コード例 #1
0
 protected override Control AddEditor(Control container)
 {
     TagsEditor t = new TagsEditor();
     t.ID = Name;
     container.Controls.Add(t);
     return t;
 }
コード例 #2
0
ファイル: TagsRow.cs プロジェクト: hemonnet/hemonnet
        public TagsRow(TagsEditor table)
        {
            this.table = table;

            AddedList = new ListBox();
            TagButton = new Button();
            UntagButton = new Button();
            AddButton = new Button();
            AdditionalBox = new TextBox();
            AvailableList = new ListBox();
            Label = new Label();
        }
コード例 #3
0
        public TagsRow(TagsEditor table)
        {
            this.table = table;

            AddedList   = new ListBox();
            TagButton   = new Button();
            UntagButton = new Button();

            AddButton     = new Button();
            AdditionalBox = new TextBox();
            AddValidator  = new RequiredFieldValidator();
            AvailableList = new ListBox();
            Label         = new Label();
        }