Show / Hide Table of Contents

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 Source

HasValidData

Gets a value indicating whether or not the state contains valid data.

Declaration
public bool HasValidData { get; }
Property Value
Type Description
System.Boolean
View Source

Height

Gets or sets the height.

Declaration
public double Height { get; set; }
Property Value
Type Description
System.Double
View Source

Left

Gets or sets the left offset.

Declaration
public double Left { get; set; }
Property Value
Type Description
System.Double
View Source

Top

Gets or sets the top offset.

Declaration
public double Top { get; set; }
Property Value
Type Description
System.Double
View Source

Width

Gets or sets the width.

Declaration
public double Width { get; set; }
Property Value
Type Description
System.Double
View Source

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
  • View Source
In This Article
Back to top Generated by DocFX