WinForms: Alternative to SplitContainer?

前端 未结 5 997
小蘑菇
小蘑菇 2021-01-12 19:51

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

5条回答
  •  时光取名叫无心
    2021-01-12 20:46

    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.

提交回复
热议问题