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 thatPropertyGrid
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 fromSystem.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.