I'm doing a custom user control.
public class MiControl:UserControl
{
public string _Cadena{get;set;} = "";
...
}
I add it to a windows.forms and in the properties window it shows me this to be able to assign a value to it.
I would like that at design time and when placing myself in this property it will behave as when I place myself in the Text property of a TextBox. It allows me to expand and display a box to include the text more conveniently.