11 writes to Width
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (2)
491
colStyle.
Width
= 100; // this width is ignored in AutoSize.
552
TableLayoutSettings.ColumnStyles[0].
Width
= Math.Max(0, DisplayRectangle.Width);
System\Windows\Forms\Panels\TableLayoutPanel\ColumnStyle.cs (1)
20
Width
= width;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (2)
529
cs.
Width
= (float)Math.Round(lastColumnHeight * factor.Width);
533
cs.
Width
= (float)Math.Round(cs.Width * factor.Width);
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\StyleEditorForm.cs (2)
916
_tableLayoutPanel.ColumnStyles[index].
Width
= value;
1013
_tableLayoutPanel.ColumnStyles[i].
Width
= (_tableLayoutPanel.ColumnStyles[i].Width * 100) / total;
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (4)
655
Table.ColumnStyles[0].
Width
= DesignerUtils.s_minimumStylePercent;
657
Table.ColumnStyles[1].
Width
= DesignerUtils.s_minimumStylePercent;
1978
Table.ColumnStyles[index].
Width
= ch[index];
1990
Table.ColumnStyles[index].
Width
= DesignerUtils.s_minimumStylePercent;
8 references to Width
System.Windows.Forms (2)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
533
cs.Width = (float)Math.Round(cs.
Width
* factor.Width);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettingsTypeConverter.cs (1)
99
columnStyles.Append($"{colStyle.SizeType},{colStyle.
Width
},");
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\StyleEditorForm.cs (6)
596
sizeValue = FormatValueString(colStyle.SizeType, colStyle.
Width
);
667
UpdateGroupBox(_tableLayoutPanel.ColumnStyles[index].SizeType, _tableLayoutPanel.ColumnStyles[index].
Width
);
680
value = _isRowCollection ? _tableLayoutPanel.RowStyles[index].Height : _tableLayoutPanel.ColumnStyles[index].
Width
;
690
if (value != (_isRowCollection ? _tableLayoutPanel.RowStyles[index].Height : _tableLayoutPanel.ColumnStyles[index].
Width
))
985
total += _tableLayoutPanel.ColumnStyles[i].
Width
;
1013
_tableLayoutPanel.ColumnStyles[i].Width = (_tableLayoutPanel.ColumnStyles[i].
Width
* 100) / total;