Class WindowStateInfo
Contains a window's serialized state (position, size, and minimized or not).
Inheritance
System.Object
WindowStateInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Phoenix.WindowManagement
Assembly: Phoenix.Core.dll
Syntax
[Serializable]
public class WindowStateInfo
Properties
View SourceHasValidData
Gets a value indicating whether or not the state contains valid data.
Declaration
public bool HasValidData { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Height
Gets or sets the height.
Declaration
public double Height { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Left
Gets or sets the left offset.
Declaration
public double Left { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Top
Gets or sets the top offset.
Declaration
public double Top { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Width
Gets or sets the width.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
WindowState
Gets or sets value indicating whether or not the window is minimized or maximized.
Declaration
public WindowState WindowState { get; set; }
Property Value
Type | Description |
---|---|
System.Windows.WindowState |