In This Article

DockingWindowsEventArgs Class

Provides event arguments for DockingWindow-related events that deal with potentially multiple windows.

public class DockingWindowsEventArgs : CancelRoutedEventArgs
Inheritance:
object EventArgs RoutedEventArgs CancelRoutedEventArgs object
Derived:
DockingWindowsAutoHidingEventArgs DockingWindowsDragOverEventArgs

Constructors

DockingWindowsEventArgs(DockHost)

Initializes a new instance of the DockingWindowsEventArgs class.

public DockingWindowsEventArgs(DockHost dockHost)
Parameter Type Description
dockHost DockHost

The DockHost containing the DockingWindow controls that are the focus of this event.

DockingWindowsEventArgs(IEnumerable<DockingWindow>)

Initializes a new instance of the DockingWindowsEventArgs class.

public DockingWindowsEventArgs(IEnumerable<DockingWindow> windows)
Parameter Type Description
windows IEnumerable<DockingWindow>

The collection of DockingWindow controls that are the focus of this event.

Properties

Windows

Gets the collection of DockingWindow controls that are the focus of this event.

public IEnumerable<DockingWindow> Windows { get; }

Property Value

IEnumerable<DockingWindow>:

The collection of DockingWindow controls that are the focus of this event.

Inherited Members