11 references to
System.Windows.Forms (4)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (2)
481ColumnStyle colStyle = TableLayoutSettings.ColumnStyles[i]; 501TableLayoutSettings.ColumnStyles[i].SizeType = SizeType.AutoSize;
System\Windows\Forms\Layout\TableLayout.cs (2)
1491Debug.Assert(containerInfo.ColumnStyles[k].SizeType == SizeType.Absolute, $"column {k} is not absolutely sized"); 1496Debug.Assert(containerInfo.ColumnStyles[k].SizeType == SizeType.Absolute, $"column {k} is not absolutely sized");
System.Windows.Forms.Design (7)
System\Windows\Forms\Design\StyleEditorForm.cs (1)
594ColumnStyle colStyle = _tableLayoutPanel.ColumnStyles[i];
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (6)
1116Debug.Assert(Table.ColumnStyles[i] is not null, "Table's ColumnStyle[" + i + "] is null!"); 1117if (Table.ColumnStyles[i] is not null) 1119TableLayoutPanelResizeGlyph g = new(gBounds, Table.ColumnStyles[i], Cursors.VSplit, Behavior); 1608switch (isRow ? Table.RowStyles[_curRow].SizeType : Table.ColumnStyles[_curCol].SizeType) 2000Table.ColumnStyles[index].Width = ch[index]; 2012Table.ColumnStyles[index].Width = DesignerUtils.s_minimumStylePercent;