------ #### ryControlsV4 V3.0.2107.0101 - *.[新增]新增Sheng.Winform.Controls部分控件。 #### RyWeb V3.0.2107.0101 - *.[新增]QuickWeb新增引用页设置。 #### MyDbV4 V3.0.2107.0101 - *.[新增]支持忽略大小写的替换功能。
29 lines
644 B
C#
29 lines
644 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Sheng.Winform.Controls
|
|
{
|
|
/// <summary>
|
|
/// Represents the visual state of an image list view item.
|
|
/// </summary>
|
|
[Flags]
|
|
public enum ShengComboSelectorState
|
|
{
|
|
/// <summary>
|
|
/// 没有任何选择状态,处于一般正常状态
|
|
/// </summary>
|
|
None = 0,
|
|
/// <summary>
|
|
/// 项处于选中状态
|
|
/// </summary>
|
|
Selected = 1,
|
|
/// <summary>
|
|
/// 鼠标滑过
|
|
/// </summary>
|
|
Hovered = 2,
|
|
//再加不要忘了是4
|
|
}
|
|
}
|