コード例 #1
0
        public TableRow(TableRowCollection o)
        {
            owner = o;

            ItemsControls = new TableRowControlsCollection(this, 0);
            Height        = 22;
        }
コード例 #2
0
        public TableRow(TableRowCollection owner)
        {
            rowCollection = owner;

            ItemsControls = new TableRowControlsCollection(this, 0);
            Height        = 22;
        }
コード例 #3
0
        public TableView()
        {
            BackColor    = Color.FromArgb(171, 171, 171);
            CellPadding  = 1;
            ColumnsStyle = new TableButtonStyle();
            Padding      = new Padding(2);
            SkipControlsInitializations = false;

            Columns = new TableColumnCollection(this);
            Rows    = new TableRowCollection(this);
        }
コード例 #4
0
        public TableView()
        {
            BackColor    = Color.FromArgb(171, 171, 171);
            BorderColor  = Color.Black;
            CellPadding  = 1;
            ColumnsStyle = new TableButtonStyle();
            Padding      = new Padding(2);

            Columns = new TableColumnCollection(this);
            Rows    = new TableRowCollection(this);

            Size = new Size(240, 150);
        }
コード例 #5
0
ファイル: TableView.cs プロジェクト: Meragon/Unity-WinForms
        public TableView()
        {
            BackColor = Color.FromArgb(171, 171, 171);
            BorderColor = Color.Black;
            CellPadding = 1;
            ColumnsStyle = new TableButtonStyle();
            Padding = new Padding(2);
            SkipControlsInitializations = false;

            Columns = new TableColumnCollection(this);
            Rows = new TableRowCollection(this);

            Size = new Size(240, 150);
        }
コード例 #6
0
ファイル: TableView.cs プロジェクト: Meragon/Unity-WinForms
        public TableRow(TableRowCollection o)
        {
            owner = o;

            ItemsControls = new TableRowControlsCollection(this, 0);
            Height = 22;
        }