상속: 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;
 }