M
Max2006
Hi,
I have a user control with a public property like this:
public string Text
{
get { return cboCountry.Text; }
set { cboCountry.Text = value; }
}
How can I have my user control's Text property appear in IDE's properties
window?
Any help would be appreciated,
Max
I have a user control with a public property like this:
public string Text
{
get { return cboCountry.Text; }
set { cboCountry.Text = value; }
}
How can I have my user control's Text property appear in IDE's properties
window?
Any help would be appreciated,
Max