This question is locked. New answers and comments are not allowed.
*Edit* I meant to post this in tabstrip not toolstrip.
I have a tab that includes a dynamically created radpanel and tabstrip, I'm having problems with the panel and tabsstrip overlapping.
I have a tab that includes a dynamically created radpanel and tabstrip, I'm having problems with the panel and tabsstrip overlapping.
Private Sub AddTab() |
'Add tab to Form |
myTab.Children(2).Margin = New Padding(0, 0, 25, 0) |
myTab.Children.Add(newButton()) |
myTab.IsSelected = True |
myTab.ContentPanel.Controls.Add(myTreePanel) |
myTab.ContentPanel.Controls.Add(myTabStrip) |
myTreePanel.Location = New System.Drawing.Point(0, 0) |
myTreePanel.Dock = System.Windows.Forms.DockStyle.Left |
myTabStrip.Location = New System.Drawing.Point(129, 0) |
myTabStrip.Dock = DockStyle.Fill |
myTabStrip.Items.Add(innerTab) |
innerTab.Children(2).Margin = New Padding(0, 0, 25, 0) |
innerTab.Children.Add(newButton()) |
innerTab.IsSelected = True |
End Sub |