You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
565 B
22 lines
565 B
using System;
|
|
|
|
namespace Microsoft.Windows.Controls
|
|
{
|
|
internal static partial class VisualStates
|
|
{
|
|
/// <summary>
|
|
/// Window State group name.
|
|
/// </summary>
|
|
public const string WindowStatesGroup = "WindowStatesGroup";
|
|
|
|
/// <summary>
|
|
/// Open state name for ChildWindow.
|
|
/// </summary>
|
|
public const string Open = "Open";
|
|
|
|
/// <summary>
|
|
/// Closed state name for ChildWindow.
|
|
/// </summary>
|
|
public const string Closed = "Closed";
|
|
}
|
|
}
|
|
|