Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Re: Propertygrid (Read 1601 times)
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Propertygrid
Feb 15th, 2011 at 9:04am
Print Post  
Hi,

In PropertyGrid.xaml.cs you can find the following line that skips non-browsable properties:

if (!property.IsBrowsable) continue;

You could add a "List<string> Filter" property to the grid control and skip properties added to the filter list:

if (Filter.Contains(property.Name)) continue;

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
PDM.
Senior Member
****
Offline


I love YaBB 1G - SP1!

Posts: 256
Joined: Dec 2nd, 2010
Re: Propertygrid
Reply #1 - Feb 19th, 2011 at 9:41pm
Print Post  
Sotyo, ignore my request, this is finally done.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint