Hi,
In the latest update (1.4.35.0), the PropertyGrid is displaying properties that have a Browsable(False) attribute. This was working correctly in previous versions.
I’ve attached a test project showing the behaviour.
Thank you. It’s caused by the new PropertyGrid.BrowsableAttributes property (it was missing and now it’s implemented). It lets you define an array of attributes to be used to filter the properties.
The workaround is to read it once to let Wisej create the default value which is Browsable(true).
Dim b = Me.PropertyGrid1.BrowsableAttributes
Me.PropertyGrid1.SelectedObject = _testClass
Please login first to submit.