picoe / Eto

Cross platform GUI framework for desktop and mobile applications in .NET
Other
3.65k stars 333 forks source link

Provide a UI designer #20

Open mojo2012 opened 12 years ago

mojo2012 commented 12 years ago

What bugs me a little bit about this new (and really cool!) UI toolkit is the fact, that there is no designer available.

I really like WinForms designer and to minor extent the Xcode Interface Builder.

It makes life so much easier in many cases, if you simply can drag widgets to a form and change their properties in a property panel.

I see these options:

This would greatly improve productivity

cwensley commented 12 years ago

Creating a converter from Stetic or WinForms is a great idea and possibly not too much work.

It's too bad Xaml support in mono is not yet complete (though I may work on that, it is close). A converter may be able to be created to generate either code OR xaml though, so when xaml is ready it'll be done.. and it'd give people options.

ghost commented 7 years ago

Is this going to be worked on a new branch or a separate repo?

Wait, is this still up?

cwensley commented 7 years ago

Hey @RBM-GITHUB,

This issue is basically tracking a "drag 'n drop" designer, where we already have a preview of xaml/json/code in Visual Studio and Xamarin Studio (albeit with a few issues that should hopefully be fixed soon).

I don't know if a d'n'd designer is really necessary for Eto.Forms, however if someone wants to work on that, I'm open to any contributions.. hence is why this is "up for grabs". (;

Cheers! Curtis.

ghost commented 7 years ago

@cwensley

Thanks for replying. Are separated UI available anyway? Like, there's XAML for WPF?

And if I fully understood how Eto thing works then I will definitely work on that (external dedicated designer) because I want it so seriously :~)

Regards, YuJin.

Shadowblitz16 commented 5 years ago

wait is this possible to do in visual studio 2017 too? idk if vs 2017 supports editor plugins but monodevelop is impossible to get for windows users if they don't know how to compile the source.

EDIT: I too would prefer a winforms style designer rather then a wpf one. the wpf designer sucks

sketchedgrey commented 3 years ago

This issue seems to have been buried, and is still open after 10 whole years. I am also surprised that Eto.Forms still doesn't have a UI designer. In all honesty I don't have the skills to implement this entirely but maybe we could gather a small team to work on such implementation.

Gzushgshsh commented 1 year ago

Creating a converter from Stetic or WinForms is a great idea and possibly not too much work.

It's too bad Xaml support in mono is not yet complete (though I may work on that, it is close). A converter may be able to be created to generate either code OR xaml though, so when xaml is ready it'll be done.. and it'd give people options.

Create a converter, e.g to convert XIB files, WinForms Designer code etc

Was this idea worked on? Is there already such a converter?

ris-work commented 3 days ago

Related: https://xaml.io

It looks like the markup is sufficiently similar that an XSLT should be enough to convert most of it (I hope). Any pointers would be appreciated (re: xeto markup, I only work with C# code for now and not xeto/jeto).