Вопрос

In my windowsForm application I use a PropertyGrid to edit the instances of my class: some of these properties are floating point with maximum and minimum item.

I wish modify them by a slider or something like it.

I've found this: http://www.visualhint.com/propertygrid but is not free..

do you have an idea to help me?

Это было полезно?

Решение

You can make use of TrackBar. Note that PropertyGrid by default does not allow you to add controls like these to it. So, you will need to do some work here. You will need to create a class that inherits from System.Drawing.Design.UITypeEditor. Next you will have to set the editor attribute for the property that has to display track bar as control. Note that unless you do custom paint, it will be shown as modal dialog or as dropdown editor.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top