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
9364
How does one set the default width of a pane docked left?
posted

 

I am docking a control to the left but do not know how to set the width of the pane. I have tried changing the width of that control via VS designer but DockManager seems to decide the width by itself.            

ultraDockManager1.DockControls(myControl, DockedLocation.DockedLeft, ChildPaneStyle.TabGroup);

Thanks!

 

Parents
  • 75
    posted

    Hi,

    Try following code for your purpose. I beleive this sample will solve your problem.

    this

     

    .ultraDockManager1.DockAreas["Key"].Panes[0].DockAreaPane.Size = new Size(width, height);

Reply Children