固定宽度的折叠面板在C#,winform?

时间:2011-09-27 13:07:25

标签: c# winforms

在winform应用程序中,我使用多个折叠面板,每个面板都包含添加的动态控件。

但问题是,折叠面板的宽度会发生变化(折叠模式下宽度减小,展开时增加)但我希望两种模式都有固定宽度。

即使我处理了collapsablePanel1_PanelStateChanged事件并设置了常量宽度,但没有用。

    private void collapsablePanel1_PanelStateChanged(object sender, EventArgs e)
    {
      this.collapsablePanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
      this.Width = collapsablePanel1.Width;
    }

如何在expaned / collapes状态下获得固定宽度折叠面板?

0 个答案:

没有答案