C# Class ComponentFactory.Krypton.Docking.KryptonDockingFloating

Inheritance: DockingElementClosedCollection
Exibir arquivo Open project: ComponentFactory/Krypton Class Usage Examples

Public Methods

Method Description
AddFloatingWindow ( ) : KryptonDockingFloatingWindow

Create and add a new floating window.

AddFloatingWindow ( string name ) : KryptonDockingFloatingWindow

Create and add a new floating window.

FindDockingFloating ( string uniqueName ) : KryptonDockingFloating

Find a floating docking element by searching the hierarchy.

FloatingWindowForStorePage ( string uniqueName ) : KryptonDockingFloatingWindow

Return the floating window element that contains a placeholder for the named page.

KryptonDockingFloating ( string name, Form ownerForm ) : System

Initialize a new instance of the KryptonDockingFloating class.

Protected Methods

Method Description
LoadChildDockingElement ( XmlReader xmlReader, KryptonPageCollection pages, IDockingElement child ) : void

Perform docking element specific actions for loading a child xml.

Private Methods

Method Description
CreateFloatingWindow ( string name ) : KryptonDockingFloatingWindow
OnDockingFloatingWindowDisposed ( object sender, EventArgs e ) : void

Method Details

AddFloatingWindow() public method

Create and add a new floating window.
public AddFloatingWindow ( ) : KryptonDockingFloatingWindow
return KryptonDockingFloatingWindow

AddFloatingWindow() public method

Create and add a new floating window.
public AddFloatingWindow ( string name ) : KryptonDockingFloatingWindow
name string Initial name of the dockspace element.
return KryptonDockingFloatingWindow

FindDockingFloating() public method

Find a floating docking element by searching the hierarchy.
public FindDockingFloating ( string uniqueName ) : KryptonDockingFloating
uniqueName string Named page for which a suitable floating element is required.
return KryptonDockingFloating

FloatingWindowForStorePage() public method

Return the floating window element that contains a placeholder for the named page.
public FloatingWindowForStorePage ( string uniqueName ) : KryptonDockingFloatingWindow
uniqueName string Unique name for search.
return KryptonDockingFloatingWindow

KryptonDockingFloating() public method

Initialize a new instance of the KryptonDockingFloating class.
public KryptonDockingFloating ( string name, Form ownerForm ) : System
name string Initial name of the element.
ownerForm System.Windows.Forms.Form Reference to form that will own all the floating windows.
return System

LoadChildDockingElement() protected method

Perform docking element specific actions for loading a child xml.
protected LoadChildDockingElement ( XmlReader xmlReader, KryptonPageCollection pages, IDockingElement child ) : void
xmlReader XmlReader Xml reader object.
pages KryptonPageCollection Collection of available pages.
child IDockingElement Optional reference to existing child docking element.
return void