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