[]
如果单元格类型本身允许执行命令,需实现该接口。
public interface ICommandCellType
public class ButtonCellType : CellType, ICommandCellType
{
public List<Command> CommandList { get; set; }
public CommandExcuteKind CommandExcuteKind
{
get
{
return CommandExcuteKind.Click;
}
}
}
触发命令的时机。
CommandExcuteKind CommandExcuteKind { get; }
类型 | 描述 |
---|---|
CommandExcuteKind |
命令列表。
List<Command> CommandList { get; set; }
类型 | 描述 |
---|---|
System.Collections.Generic.List<T><Command> |