Bug found in PropertyGrid

0
0

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.

  • You must to post comments
0
0

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

 

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.