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.
16 lines
293 B
16 lines
293 B
using System.ComponentModel;
|
|
|
|
namespace CK.SCP.Models.Enums
|
|
{
|
|
public enum ControlType
|
|
{
|
|
[Description("标签")]
|
|
Tab = 0,
|
|
[Description("群组")]
|
|
Grp = 1,
|
|
[Description("容器")]
|
|
Ctn = 2,
|
|
[Description("菜单项")]
|
|
Itm = 3,
|
|
}
|
|
}
|