.net - Is there a Property Dialog control that i can use in my WPF App? -


I am creating an application using WPF which would be a designer, which means user custom UI elements Can be able to configure their behavior in a canvas and through properties.

(Think of it as a domain specific power point. You can add elements to the presentation, configure properties of elements, and then eventually you can run "slideshow" and these elements Will behave accordingly)

So in my app, what is the best way to show and configure the properties of an element? Is there a property dialog control I can use? (Similar to the one in Visual Studio for control)

Unfortunately, there is no PropertyGrid In Control WPF you must either use the WinForms property grid or one available in the open source community or buy from third party vendors. WPF Property Grid:

PropertyTools (previously said) -

Open Source -

WPF Property Grid - MVVM Techniques:

P> If you are working on Net 4.0, then you should see PropertyInspectorView WPF control of WWF Can use as a property grid in As mentioned in this article -

Third party:

Actipro:

ComponentOne:

Mindscape:

Syncfusion:

Custom -

In case you have your own

(very) Simple WPF Property Grid in 20 Minutes:

In a few hours your Own Property Grid:


Comments