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
3455
TextTab of DockableControlPane is not viewable if it's Pinned property is set false
posted

Hi,

       

 

 

DockableControlPane controlPane = null;           

 

DockAreaPane areaPane = null;           

 

DockableGroupPane dckGpPane;                      

 

dckGpPane = new DockableGroupPane();           

 

controlPane = new DockableControlPane();           

 

 controlPane.Text = "Control_1";           

 

controlPane.Control = Control_1;           

 

controlPane.IsMdiChild = true;           

 

controlPane.Settings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;           

 

 dckGpPane.ChildPaneStyle = ChildPaneStyle.TabGroup;           

 

dckGpPane.Panes.Add(controlPane);           

 

 ///           

 

 controlPane = new DockableControlPane();           

 

controlPane.Text = "Control_2";           

 

controlPane.Control = Control_2;           

 

controlPane.IsMdiChild = true;           

 

controlPane.Settings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;           

 

dckGpPane.Panes.Add(controlPane);            

 

areaPane = new DockAreaPane(DockedLocation.DockedTop);           

 

 areaPane.Panes.Add(dckGpPane);           

 

 UltraDockManager1.DockAreas.Add(areaPane);   

 

 

 

This is my code for adding pane to DockManager, Everthing is working well. If I have pressed the AutoHide button (or Pinned property is set false) the pane collapse to its dock position, but now only the active pane text is visible.  In Visual Studio 2008 both the pane text is visible.  How can I set this property in UltraDockManager.   Regards,

Ceaser