Inheritance: Descriptor
示例#1
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.DropDown);
 }
示例#2
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.RadioButtonList);
 }
示例#3
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.BlankItem);
 }
示例#4
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.FileUpload };

            return types.Contains(type);
        }
示例#5
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.Calendar };

            return types.Contains(type);
        }
示例#6
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.SelectButton);
 }
示例#7
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[]{ PanelItemType.MultiLineText, PanelItemType.NonEditableText, PanelItemType.EditableText, PanelItemType.Password, PanelItemType.Label };

            return types.Contains(type);
        }
示例#8
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.DropDown };

            return types.Contains(type);
        }
示例#9
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.TreeView);
 }
示例#10
0
        public bool CanRender(PanelItemType type)
        {
            var types = new[] { PanelItemType.Image, PanelItemType.InfoIcon };

            return types.Contains(type);
        }
示例#11
0
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.Calendar);
 }
示例#12
0
文件: TextRenderer.cs 项目: NLADP/ADF
 public bool CanRender(PanelItemType type)
 {
     return type.IsIn(PanelItemType.MultiLineText, PanelItemType.NonEditableText, PanelItemType.EditableText, PanelItemType.Password, PanelItemType.Label);
 }
示例#13
0
 public bool CanRender(PanelItemType type)
 {
     return type == PanelItemType.Hidden;
 }