コード例 #1
0
ファイル: ControlModels.cs プロジェクト: xtoblizi/BForms
        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
ファイル: ControlModels.cs プロジェクト: stantoxt/BForms
        public InputControlModel()
            : base(FormBuilderControlType.Textbox)
        {
            Properties = new InputControlProperties();

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