ComponentFactory.Krypton.Docking.KryptonDockingFloatspace.RaiseCellAdding C# (CSharp) Метод

RaiseCellAdding() защищенный Метод

Raises the type specific cell adding event determinated by the derived class.
protected RaiseCellAdding ( KryptonWorkspaceCell cell ) : void
cell KryptonWorkspaceCell Referecence to new cell being added.
Результат void
        protected override void RaiseCellAdding(KryptonWorkspaceCell cell)
        {
            // Generate event so the floatspace cell customization can be performed.
            KryptonDockingManager dockingManager = DockingManager;
            if (dockingManager != null)
            {
                FloatspaceCellEventArgs args = new FloatspaceCellEventArgs(FloatspaceControl, this, cell);
                dockingManager.RaiseFloatspaceCellAdding(args);
            }
        }