Are there any alternative controls someone can suggest to replace the WinForms SplitContainer? I don\'t like how the SplitContainer shows that weird, dotted strip when its s
I needed the same and set the following properties:
splitContainer1.Anchor = (AnchorStyles.Top | AnchorStyles.Left); splitContainer1.Dock = DockStyle.Fill; splitContainer1.IsSplitterFixed = true;
Hope this helps.