示例#1
0
        public InputControlModel() :
            base(FormBuilderControlType.Textbox)
        {
            Properties = new InputControlProperties();

            DefaultProperties.Name  = "New.textBox";
            DefaultProperties.Label = "New Textbox";
        }
示例#2
0
        public InputControlModel() :
            base(FormBuilderControlType.Textbox)
        {
            Properties = new InputControlProperties
            {
                Type = BsSelectList <FormBuilderInputType> .FromEnum(typeof(FormBuilderInputType))
            };

            DefaultProperties = new DefaultcontrolProperties
            {
                Width = BsSelectList <ColumnWidth> .FromEnum(typeof(ColumnWidth))
            };
        }
示例#3
0
        public InputControlModel()
            : base(FormBuilderControlType.Textbox)
        {
            Properties = new InputControlProperties();

            DefaultProperties.Name = "New.textBox";
            DefaultProperties.Label = "New Textbox";
        }