Enum WindowResizeDirection
Specifies the direction(s) in which a window can be resized. Typically used to determine the cursor type or the drag behavior during edge/corner resizing.
Namespace: PoeShared.Blazor.Wpf
Assembly: PoeShared.Blazor.Wpf.dll
Syntax
public enum WindowResizeDirection
Fields
Name | Description |
---|---|
Bottom | Resizing from the bottom edge of the window. |
BottomLeft | Resizing from the bottom-left corner of the window. |
BottomRight | Resizing from the bottom-right corner of the window. |
Left | Resizing from the left edge of the window. |
None | No resize operation is in progress or allowed. |
Right | Resizing from the right edge of the window. |
Top | Resizing from the top edge of the window. |
TopLeft | Resizing from the top-left corner of the window. |
TopRight | Resizing from the top-right corner of the window. |