internal void Remove(DockPane pane) { InnerList.Remove(pane); }
/// <include file='CodeDoc\DockPaneCollection.xml' path='//CodeDoc/Class[@name="DockPaneCollection"]/Method[@name="Contains(DockPane)"]/*'/>> public bool Contains(DockPane pane) { return(InnerList.Contains(pane)); }
/// <include file='CodeDoc\DockPaneCollection.xml' path='//CodeDoc/Class[@name="DockPaneCollection"]/Method[@name="IndexOf(DockPane)"]/*'/>> public int IndexOf(DockPane pane) { return(InnerList.IndexOf(pane)); }
private void Close_Click(object sender, EventArgs e) { DockPane.CloseActiveContent(); }
internal void AddAt(DockPane pane, DockPane paneBefore) { AddAt(pane, IndexOf(paneBefore)); }
public DockPane CreateDockPane(IDockableWindow content, DockPane prevPane, DockAlignment alignment, double proportion, bool show) { return(new DockPane(content, prevPane, alignment, proportion, show)); }
internal void Remove(DockPane pane) { InternalRemove(pane); CheckFloatWindowDispose(); }
public AutoHidePane CreateAutoHidePane(DockPane pane) { return(new AutoHidePane(pane)); }
public DockPaneStripBase CreateDockPaneStrip(DockPane pane) { return(new DockPaneStripVS2005(pane)); }
public DockPaneCaptionBase CreateDockPaneCaption(DockPane pane) { return(new DockPaneCaptionVS2005(pane)); }
public FloatWindow CreateFloatWindow(DockContainer dockPanel, DockPane pane, Rectangle bounds) { return(new FloatWindow(dockPanel, pane, bounds)); }
public FloatWindow CreateFloatWindow(DockContainer dockPanel, DockPane pane) { return(new FloatWindow(dockPanel, pane)); }