VS2010 User Control - Text Property

In VS2010, Text property in user control are not visible by default.
Adding Browsable(true) attribute will display the Text property in properties window but the value was not stored in designer file (xxxx.designer.cs).

Solutions:
 
[EditorBrowsable(EditorBrowsableState.Always)]
[Browsable(true)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
[Bindable(true)]
public override string Text ... 
 

Popular posts from this blog

(AGauge) WinForms Gauge Control - Discontinued

C# DSP Simulation - DSP Lab

WinForms Controls