Home > Net >  Usercontrol why add attributes, properties window does not display the custom properties
Usercontrol why add attributes, properties window does not display the custom properties

Time:09-19


Private string strTxt;

[Browsable (true)]
Public string ButtonName
{
The get
{
//TODO
Return strTxt;
}
Set
{
//TODO
StrTxt=value;
}
}

Why don't the properties window display this property?

CodePudding user response:

You that's not a problem, to regenerate once again and have a look
  •  Tags:  
  • C#
  • Related