Files

25 lines
564 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace XericUI.Core.StyleSheetUI
{
/// <summary>
/// UI 交互状态枚举——仿 Selectable.SelectionStateprotected 无法外部引用)。
/// 使用时通过 (StyleSheetSelectionState)(int)selectableState 转换。
/// </summary>
public enum StyleSheetSelectionState
{
/// <summary>正常状态</summary>
Normal,
/// <summary>高亮(鼠标悬停)状态</summary>
Highlighted,
/// <summary>按下状态</summary>
Pressed,
/// <summary>选中状态</summary>
Selected,
/// <summary>禁用状态</summary>
Disabled,
}
}