I have a tab control in a windows form and I want to be able to click on a tab and in the body area of the tab I want it to display another form as an embedded component. Is this possible? If so, can someone please provide an example or a link to an example of how to accomplish this?
相关问题
- Laravel Option Select - Default Issue
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
Set your MainForm (Parent) as IsMDIContainer = true;
Create an instance of the ChildForm and call this function:
Copy this Function to your code:
I think the other answer has the right idea; Tabbed MDI is probably what you want.
There is an approach where you create a UserControl that has the same content as the form and use that on the TabPage.
http://bytes.com/topic/c-sharp/answers/270457-can-i-add-form-tabpage goes into more detail; but I'd look at the MDI stuff first.
If you do not want to use MDI, you can try to put everything from desired form to user control and add this user control in both form and tab.
You can embed a Form but it's not the best choice.
Better place the contents on UserControls and add that to the TabPage.
You are probably looking for Tabbed MDI Child Forms