ComponentFactory.Krypton.Docking.DockspaceCellEventArgs.DockspaceCellEventArgs C# (CSharp) 메소드

DockspaceCellEventArgs() 공개 메소드

Initialize a new instance of the DockspaceCellEventArgs class.
public DockspaceCellEventArgs ( KryptonDockspace dockspace, KryptonDockingDockspace element, KryptonWorkspaceCell cell ) : System
dockspace KryptonDockspace Reference to existing dockspace control instance.
element KryptonDockingDockspace Reference to docking dockspace element that is managing the dockspace control.
cell KryptonWorkspaceCell Reference to dockspace control cell instance.
리턴 System
        public DockspaceCellEventArgs(KryptonDockspace dockspace,
                                      KryptonDockingDockspace element,
                                      KryptonWorkspaceCell cell)
        {
            _dockspace = dockspace;
            _element = element;
            _cell = cell;
        }
DockspaceCellEventArgs