Example #1
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);
        }
Example #2
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);
        }
Example #3
0
        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);
        }
Example #4
0
 public TableColumn(TableColumnCollection o)
 {
     owner = o;
 }
Example #5
0
 public TableColumn(TableColumnCollection o)
 {
     owner = o;
 }