Filter elements in PropertyGrid
- by serhio
In System.Windows.Forms there are a PropertyGrid that displays properties of an attached object. Let's say MyTextBox : TextBox.
Now, I would like to display on it some MyTextBox properties, say only Size, Location and my custom property Date.
More that than, I would like to be able to change the real property names, say "Dimension", "Location" and "Starting Date".
I saw two projects on this subject : first and second, but first does not work well(for browsable properties), and the second seems to add an event for each property changes, this is not acceptable.