Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
205
Change the height of GroupBox
posted

Hye!
I'm trying to change the height of my GroupBox in DockManager but each time, the height is move to 95. I tried to change DockAreaPane, Pane , GroupBox, but i didn't find. Each time the height is changed to 95.
Help me please!!!
Thanks

Parents
  • 44743
    Suggested Answer
    posted

    I'm not sure I understand the question.

    It seems to me like you have an UltraDockManager on your Form and one of the controls which is docked as a pane is a .NET GroupBox control. You would like to change the height of the pane which contains the GroupBox, but it always remains the same height. Is this correct?

    If so, it depends on where the pane is docked.

    If it is floating or docked on the top or bottom and it is by itself (not part of a group), you would want to increase the height of the DockAreaPane, like so:

    DockableControlPane controlPane = this.ultraDockManager1.ControlPanes[this.groupBox1];
    DockablePaneBase dockAreaPane = controlPane.DockAreaPane;
    dockAreaPane.Size = new Size(dockAreaPane.Size.Width, newHeight);

    If it is docked on the left or right and it is by itself, you cannot change the height of the pane, because the pane is docked to take up the entire height of the UltraDockManager's container.

    If the pane is part of a horizontal split group and you want to change the height, you would set the Size of the pane directly, which indicates the Size of the pane relative to the other panes with which it must divide its space:

    DockableControlPane controlPane = this.ultraDockManager1.ControlPanes[this.groupBox1];
    controlPane.Size = new Size(controlPane.Size.Width, newHeight);

    I hope this answers your question. If not, please provide more details about the nature of what you are trying to accomplish.

Reply Children