Sizing issues while adding a .Net UserControl to a TabPage

Posted by TJ_Fischer on Stack Overflow See other posts from Stack Overflow or by TJ_Fischer
Published on 2010-04-28T22:25:34Z Indexed on 2010/04/28 22:27 UTC
Read the original article Hit count: 246

Filed under:
|
|
|
|

I have a complex Windows Forms GUI program that has a lot of automated control generation and manipulation. One thing that I need to be able to do is add a custom UserControl to a newly instatiated TabPage. However, when my code does this I get automatic resizing events that cause the formatting to get ugly. Without detailing all of the different Containers that could possibly be involved, the basic issue is this:

At a certain point in the code I create a new tab page:

TabPage tempTabPage = new TabPage("A New Tab Page");

Then I set it to a certain size that I want it to maintain:

tempTabPage.Width = 1008;
tempTabPage.Height = 621;

Then I add it to a TabControl:

tabControl.TabPages.Add(tempTabPage);

Then I create a user control that I want to appear in the newly added TabPage:

CustomView customView = new CustomView("A new custom control");

Here is where the problem comes in. At this point both the tempTabPage and the customView are the same size with no padding or margin and they are the size I want them to be. I now try to add this new custom UserControl to the tab page like this:

tempTabPage.Controls.Add(customView);

When making this call the customView and it's children controls get resized to be larger and so parts of the customView are hidden.

Can anyone give me any direction on what to look for or what could be causing this kind of issue?

Thanks ahead of time.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about c#