Example #1
0
 /// <summary>
 /// Set mode vertical split
 /// </summary>
 /// <param name="topPane">left pane</param>
 /// <param name="bottomPane">right pane</param>
 public void SetModeVSplit(DockableContainer topPane, DockableContainer bottomPane)
 {
     _linkedView = null;
     InternalControls.SetModeVSplit(topPane, bottomPane);
 }
Example #2
0
 /// <summary>
 /// Set mode horizontal split
 /// </summary>
 /// <param name="leftPane">left pane</param>
 /// <param name="rightPane">right pane</param>
 public void SetModeHSplit(DockableContainer leftPane, DockableContainer rightPane)
 {
     _linkedView = null;
     InternalControls.SetModeHSplit(leftPane, rightPane);
 }
Example #3
0
 /// <summary>
 /// Set mode linked
 /// </summary>
 /// <param name="link">link</param>
 public void SetModeLinked(FormsTabbedView link)
 {
     InternalControls.SetModeEmpty();
     _linkedView = link;
 }
Example #4
0
 /// <summary>
 /// Set mode single child control
 /// </summary>
 /// <param name="singleChild">single child</param>
 public void SetModeSingleChild(FormsTabbedView singleChild)
 {
     _linkedView = null;
     InternalControls.SetModeSingleChild(singleChild);
 }
Example #5
0
 /// <summary>
 /// Set mode empty
 /// </summary>
 public void SetModeEmpty()
 {
     _linkedView = null;
     InternalControls.SetModeEmpty();
 }