ComponentFactory.Krypton.Docking.KryptonDockspaceSlide.NewCellInitialize C# (CSharp) Method

NewCellInitialize() protected method

Initialize a new cell.
protected NewCellInitialize ( KryptonWorkspaceCell cell ) : void
cell KryptonWorkspaceCell Cell being added to the control.
return void
        protected override void NewCellInitialize(KryptonWorkspaceCell cell)
        {
            // Let base class perform event hooking and customizations
            base.NewCellInitialize(cell);

            // We only ever show a single page in the dockspace, so remove default
            // tabbed appearance and instead use a header group mode instead
            cell.NavigatorMode = NavigatorMode.HeaderGroup;
        }