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(bool, RoutedEvent, object)
Initializes a new instance of the WindowBoundsChangeEventArgs class.
public WindowBoundsChangeEventArgs(bool isMove, RoutedEvent routedEvent, object source)
| Parameter | Type | Description |
|---|---|---|
| isMove | bool |
|
| 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
- bool:
trueif the event is for a move; otherwise,falseif the event is for a size.