vote up 0 vote down star

I need .NET UI control that acts as a designer/editor window similar to what you see in some of these applications: - Visual Studio - Visio - Balsamiq - Windows Workflow - Photoshop

I hope to use WPF, but will settle for WinForms. I need to create custom widgets that I can drag, drop, and edit in the designer/editor window. I am open to building or buying.

After looking at the common third-party .NET tool providers I cannot find anything.

Ideas?

flag

2 Answers

vote up 1 vote down

You can start with this (Hosting Windows Forms Designers), it pretty much implements everything needed to create a WinForm designer.

Hosting Windows Forms Designers

link|flag
vote up 0 vote down

I think I would tend to go with WPF and rolling my own implementation. In WPF it is comparably easy to build wyswig style editors because you can host anything within anything (e.g. a Button within a drawing) and you can quickly reuse the rendered bitmap of a control or drawing in several palces of your UI (think preview pane etc.) without any perfomance penalty (VisualBrush). I wrote a small editor once myself and made heavy use of adorners - I didn't find it too hard.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.