Example #1
0
        /// <include file='CodeDoc/AutoHideStripBase.xml' path='//CodeDoc/Class[@name="AutoHideStripBase"]/Construct[@name="(DockPanel)"]/*'/>
        protected internal AutoHideStripBase(DockPanel panel)
        {
            m_dockPanel   = panel;
            m_panesTop    = new AutoHidePaneCollection(panel, DockState.DockTopAutoHide);
            m_panesBottom = new AutoHidePaneCollection(panel, DockState.DockBottomAutoHide);
            m_panesLeft   = new AutoHidePaneCollection(panel, DockState.DockLeftAutoHide);
            m_panesRight  = new AutoHidePaneCollection(panel, DockState.DockRightAutoHide);

            SetStyle(ControlStyles.Selectable, false);
        }
Example #2
0
 public AutoHidePaneEnumerator(AutoHidePaneCollection panes)
 {
     m_panes = panes;
     Reset();
 }