38 instantiations of RowStyle
System.Web.Entity.Design (1)
System\Data\WebControls\Design\Util\WizardForm.cs (1)
126
this._wizardButtonsTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
System.Windows.Forms (34)
winforms\Managed\System\WinForms\MDIWindowDialog.cs (1)
136
this.okCancelTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
winforms\Managed\System\WinForms\Printing\PrintControllerWithStatusDialog.cs (2)
289
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.
RowStyle
(SizeType.Percent, 50F));
290
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.
RowStyle
(SizeType.Percent, 50F));
winforms\Managed\System\WinForms\PropertyGridInternal\GridErrorDlg.cs (5)
210
this.overarchingTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
211
this.overarchingTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
212
this.overarchingTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
(System.Windows.Forms.SizeType.Absolute, 20F));
232
this.buttonTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
270
this.pictureLabelTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
(System.Windows.Forms.SizeType.AutoSize));
winforms\Managed\System\WinForms\StatusStrip.cs (2)
489
TableLayoutSettings.RowStyles.Add(new
RowStyle
());
515
this.TableLayoutSettings.RowStyles.Add(new
RowStyle
());
winforms\Managed\System\WinForms\TableLayoutSettingsTypeConverter.cs (1)
238
settings.RowStyles.Add(new
RowStyle
(type, width));
winforms\Managed\System\WinForms\TrustManagerMoreInformation.cs (9)
230
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
231
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
232
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
233
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
234
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
235
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
236
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
237
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
238
this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
winforms\Managed\System\WinForms\TrustManagerPromptUI.cs (14)
195
this.tableLayoutPanelOuter.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
196
this.tableLayoutPanelOuter.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
197
this.tableLayoutPanelOuter.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
198
this.tableLayoutPanelOuter.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
199
this.tableLayoutPanelOuter.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
211
this.warningTextTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
237
this.tableLayoutPanelQuestion.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
261
this.tableLayoutPanelButtons.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
295
this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
296
this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
297
this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
298
this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
299
this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
300
this.tableLayoutPanelInfo.RowStyles.Add(new System.Windows.Forms.
RowStyle
());
System.Workflow.ComponentModel (3)
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (3)
190
this.nameLocationTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
(System.Windows.Forms.SizeType.Percent, 50F));
191
this.nameLocationTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
(System.Windows.Forms.SizeType.Percent, 50F));
279
this.okCancelTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.
RowStyle
(System.Windows.Forms.SizeType.Percent, 100F));
10 references to RowStyle
System.Windows.Forms (10)
winforms\Managed\System\WinForms\StatusStrip.cs (1)
524
RowStyle
rowStyle = this.TableLayoutSettings.RowStyles[i];
winforms\Managed\System\WinForms\TableLayoutPanel.cs (1)
539
foreach(
RowStyle
rs in RowStyles) {
winforms\Managed\System\WinForms\TableLayoutRowStyleCollection.cs (7)
30
public int Add(
RowStyle
rowStyle) { return ((IList)this).Add(rowStyle); }
33
public void Insert(int index,
RowStyle
rowStyle) { ((IList)this).Insert(index, rowStyle); }
36
public new
RowStyle
this[int index] {
37
get { return (
RowStyle
)((IList)this)[index]; }
42
public void Remove(
RowStyle
rowStyle) { ((IList)this).Remove(rowStyle); }
45
public bool Contains(
RowStyle
rowStyle) { return ((IList)this).Contains(rowStyle); }
48
public int IndexOf(
RowStyle
rowStyle) { return ((IList)this).IndexOf(rowStyle); }
winforms\Managed\System\WinForms\TableLayoutSettingsTypeConverter.cs (1)
118
foreach (
RowStyle
rowStyle in tableLayoutSettings.RowStyles) {