Does C# (WinForms) support adding a view or control to another control? Could anyone give me an example? Thanks in advance.
I use this code in Objective-C.
[aView addSubview:anotherView];
|
|
You can do this programatically with a Panel. You could also use Visual Studio's Designer GUI to create a UserControl, which is more reusable, since you will be able to drag and drop it on to any form at design time. Sorry if I misunderstand the question.
|
||||
|
|