In This Article

WindowBoundsChangeEventArgs Class

Provides event arguments for a window bounds change event published by WindowChrome.

public class WindowBoundsChangeEventArgs : RoutedEventArgs
Inheritance:
Object EventArgs RoutedEventArgs Object

Constructors

WindowBoundsChangeEventArgs(Boolean, RoutedEvent, Object)

Initializes a new instance of the WindowBoundsChangeEventArgs class.

public WindowBoundsChangeEventArgs(bool isMove, RoutedEvent routedEvent, object source)
Parameter Type Description
isMove Boolean

true if the event is for a move; otherwise, false if the event is for a size.

routedEvent RoutedEvent

The routed event identifier for this event arguments instance.

source Object

An alternate source that will be reported when the event is handled.

Properties

IsMove

Gets or sets a value indicating whether the event is for a move.

public bool IsMove { get; set; }

Property Value

Boolean:

true if the event is for a move; otherwise, false if the event is for a size.

Inherited Members