question: ui designer #2724
Replies: 3 comments 5 replies
-
There is a UI previewer that will show you the UI for xeto(xaml), jeto(json), and code based views. This is currently only available for Visual Studio on Windows. (it was available on VS for Mac previously but that is now discontinued). I would like to have something similar for VSCode now that is the only option for Mac (and linux) but have not had the time to dedicate to doing that yet. |
Beta Was this translation helpful? Give feedback.
-
There is a UI previewer that AFAIK only works on Windows (needs VS); no cross-platform or web ones. If you see other UI frameworks/toolkits, the only one with a decent editor are Microsoft's ones. Just for comparison:
I have tried all of them and I actively use Eto.Forms, Terminal.Gui and AvaloniaUI; I would absolutely recommend the former two. |
Beta Was this translation helpful? Give feedback.
-
I use VSCode
using Eto.Forms;
internal class Program
{
[STAThread]
private static void Main(string[] args)
{
new Application(new Eto.Wpf.Platform()).Run(new MainForm());
}
}
public class MainForm : Form
{
public MainForm()
{
Content = MakeContent();
}
protected override void OnKeyUp(KeyEventArgs e)
{
base.OnKeyUp(e);
if (e.Key == Keys.F5)
{ //I set a breakpoint here
Content = MakeContent();
}
}
private Control MakeContent()
{
return "Hello world";
}
} |
Beta Was this translation helpful? Give feedback.
-
is there a ui designer for this?
Beta Was this translation helpful? Give feedback.
All reactions