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

DockableWorkspaceCellEventArgs() 공개 메소드

Initialize a new instance of the DockableWorkspaceCellEventArgs class.
public DockableWorkspaceCellEventArgs ( KryptonDockableWorkspace workspace, KryptonDockingWorkspace element, KryptonWorkspaceCell cell ) : System
workspace KryptonDockableWorkspace Reference to existing dockable workspace control instance.
element KryptonDockingWorkspace Reference to docking workspace element that is managing the dockable workspace control.
cell KryptonWorkspaceCell Reference to workspace control cell instance.
리턴 System
        public DockableWorkspaceCellEventArgs(KryptonDockableWorkspace workspace,
                                              KryptonDockingWorkspace element,
                                              KryptonWorkspaceCell cell)
        {
            _workspace = workspace;
            _element = element;
            _cell = cell;
        }
DockableWorkspaceCellEventArgs