I'm working on WPF project and There is this problem with property grid control. Here I saw the similar problem solved in windowsform project. I'd like to know if anyone have any ideas how I can accomplish this behavior on WPF.
Thanks in advance
Search Result
Collapse
3 results in 0.0013 seconds.
Keywords
Members
Tags
-
TypeConverter PropertyGrid and the MouseWheel event
Hi everyone,
I display some data in a propertygrid using different TypeConverters that I created. Those TypeConverters have different behaviors but they all support the Mouse wheel event to change the property.
If you scroll the mouse wheel, the selected property change as it should, no problem there. But if there are enough properties to generate a vertical scroll bar on the propertygrid, the property change as it should... -
PropertyGrid with DataSet or DataGridView
Problem: create a new winform app in C# VS2008.
Drop a PropertyGrid component, Drop a DataSet (untyped)
Set the PropertyGrid.Se lectedObject to the DataSet.
Run the application, and try to select the table editor.
Can not bring up the tables collection editor
Drop a DataGridView, set the PropertyGrid.Se lectedObject to the DataGridView.
Can not access the Columns collection.
A little...