35 instantiations of ColumnStyle
System.Web.Entity.Design (7)
System\Data\WebControls\Design\Util\WizardForm.cs (7)
110this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); 111this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 3F)); 112this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); 113this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 7F)); 114this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F)); 115this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 7F)); 116this._wizardButtonsTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
System.Windows.Forms (22)
winforms\Managed\System\WinForms\MDIWindowDialog.cs (2)
130this.okCancelTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); 131this.okCancelTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
winforms\Managed\System\WinForms\Printing\PrintControllerWithStatusDialog.cs (1)
285tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(SizeType.Percent, 100F));
winforms\Managed\System\WinForms\PropertyGridInternal\GridErrorDlg.cs (6)
203this.overarchingTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 223this.buttonTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); 224this.buttonTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 225this.buttonTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 262this.pictureLabelTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 263this.pictureLabelTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
winforms\Managed\System\WinForms\StatusStrip.cs (2)
473this.TableLayoutSettings.ColumnStyles.Add(new ColumnStyle()); 532TableLayoutSettings.ColumnStyles.Add(new ColumnStyle());
winforms\Managed\System\WinForms\TableLayoutSettingsTypeConverter.cs (1)
235settings.ColumnStyles.Add(new ColumnStyle(type, width));
winforms\Managed\System\WinForms\TrustManagerMoreInformation.cs (2)
213this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 214this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 389F));
winforms\Managed\System\WinForms\TrustManagerPromptUI.cs (8)
187this.tableLayoutPanelOuter.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 510F)); 205this.warningTextTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 206this.warningTextTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); 231this.tableLayoutPanelQuestion.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); 232this.tableLayoutPanelQuestion.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 58F)); 255this.tableLayoutPanelButtons.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); 256this.tableLayoutPanelButtons.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); 286this.tableLayoutPanelInfo.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
System.Workflow.ComponentModel (6)
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (6)
181this.nameLocationTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 182this.nameLocationTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); 183this.nameLocationTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); 272this.okCancelTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F)); 273this.okCancelTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F)); 274this.okCancelTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
11 references to ColumnStyle
System.Windows.Forms (11)
winforms\Managed\System\WinForms\Layout\TableLayout.cs (1)
1752foreach (ColumnStyle style in _colStyles) {
winforms\Managed\System\WinForms\StatusStrip.cs (1)
482ColumnStyle colStyle = this.TableLayoutSettings.ColumnStyles[i];
winforms\Managed\System\WinForms\TableLayoutColumnStyleCollection.cs (7)
30public int Add(ColumnStyle columnStyle) { return ((IList)this).Add(columnStyle); } 33public void Insert(int index, ColumnStyle columnStyle) { ((IList)this).Insert(index, columnStyle); } 36public new ColumnStyle this[int index] { 37get { return (ColumnStyle)((IList)this)[index]; } 42public void Remove(ColumnStyle columnStyle) { ((IList)this).Remove(columnStyle); } 45public bool Contains(ColumnStyle columnStyle) { return ((IList)this).Contains(columnStyle); } 48public int IndexOf(ColumnStyle columnStyle) { return ((IList)this).IndexOf(columnStyle); }
winforms\Managed\System\WinForms\TableLayoutPanel.cs (1)
523foreach(ColumnStyle cs in ColumnStyles) {
winforms\Managed\System\WinForms\TableLayoutSettingsTypeConverter.cs (1)
104foreach (ColumnStyle colStyle in tableLayoutSettings.ColumnStyles) {