using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Sheng.Winform.Controls
{
///
/// Represents the visual state of an image list view item.
///
[Flags]
public enum ShengComboSelectorState
{
///
/// 没有任何选择状态,处于一般正常状态
///
None = 0,
///
/// 项处于选中状态
///
Selected = 1,
///
/// 鼠标滑过
///
Hovered = 2,
//再加不要忘了是4
}
}