ComponentFactory.Krypton.Docking.KryptonDockingAutoHiddenGroup.KryptonDockingAutoHiddenGroup C# (CSharp) Method

KryptonDockingAutoHiddenGroup() public method

Initialize a new instance of the KryptonDockingAutoHiddenGroup class.
public KryptonDockingAutoHiddenGroup ( string name, DockingEdge edge ) : System
name string Initial name of the element.
edge DockingEdge Docking edge being managed.
return System
        public KryptonDockingAutoHiddenGroup(string name, DockingEdge edge)
            : base(name)
        {
            _edge = edge;

            // Create a control that will draw tabs for auto hidden pages
            _autoHiddenGroup = new KryptonAutoHiddenGroup(edge);
            _autoHiddenGroup.StoringPage += new EventHandler<UniqueNameEventArgs>(OnAutoHiddenGroupStoringPage);
            _autoHiddenGroup.TabClicked += new EventHandler<KryptonPageEventArgs>(OnAutoHiddenGroupTabClicked);
            _autoHiddenGroup.TabMouseHoverStart += new EventHandler<KryptonPageEventArgs>(OnAutoHiddenGroupHoverStart);
            _autoHiddenGroup.TabMouseHoverEnd += new EventHandler(OnAutoHiddenGroupHoverEnd);
            _autoHiddenGroup.TabVisibleCountChanged += new EventHandler(OnAutoHiddenGroupTabVisibleCountChanged);
            _autoHiddenGroup.Disposed += new EventHandler(OnAutoHiddenGroupDisposed);
        }