Multiple layout UserControl
- by johnm01
Hi all,
I have a UserControl that manages a lot of editable information (like text-boxes). Now I need to make a version of this control that has a different layout (from horizontal to vertical). I can expose the control, like this:
public TextBox MyText
{
get { return myText; }
set { myText = value; }
}
i can now manually change the location and size, but this does not give me a visual reposition of them at design time.
Is there a better way of doing this ?
Thanks
John