Click here to Skip to main content
15,891,777 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
if i use a browseable(false) then temporarily hide the properties. when modifies the properties that property show on property grid.
I use the Xceed.Wpf.Toolkit.PropertyGrid;

[Category("Typography")]
[DisplayName(@"Font Weight")]
[Browsable(false)]
public FontWeight ControlFontWeight
{
get
{
return this.controlFontWeight;
}

set
{
this.controlFontWeight = value;
this.OnPropertyChanged("ControlFontWeight");
}
}



Thanks
Posted
Updated 6-May-15 19:25pm
v2
Comments
Irina Pykhova 11-May-15 9:30am    
looks like a problem in Telerik's implementation. As far as I remember, they have support forums on their site, ask there

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900