21 references to TableLayoutPanelGrowStyle
PresentationUI (1)
MS\Internal\Documents\Application\DocumentPropertiesDialog.Designer.cs (1)
189
this.tableLayoutPanel1.GrowStyle = System.Windows.Forms.
TableLayoutPanelGrowStyle
.FixedSize;
System.Windows.Forms (17)
_generated\1\Validation.cs (2)
754
public static void Validate(System.Windows.Forms.
TableLayoutPanelGrowStyle
enumToValidate, string parameterName = "value")
758
ReportEnumValidationError(parameterName, intValue, typeof(System.Windows.Forms.
TableLayoutPanelGrowStyle
));
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (2)
472
TableLayoutSettings.GrowStyle =
TableLayoutPanelGrowStyle
.AddColumns;
519
TableLayoutSettings.GrowStyle =
TableLayoutPanelGrowStyle
.AddRows;
System\Windows\Forms\Layout\TableLayout.ContainerInfo.cs (3)
34
private
TableLayoutPanelGrowStyle
_growStyle;
47
_growStyle =
TableLayoutPanelGrowStyle
.AddRows;
174
public
TableLayoutPanelGrowStyle
GrowStyle
System\Windows\Forms\Layout\TableLayout.cs (6)
253
TableLayoutPanelGrowStyle
growStyle = containerInfo.GrowStyle;
254
if (growStyle ==
TableLayoutPanelGrowStyle
.FixedSize)
271
else if (growStyle ==
TableLayoutPanelGrowStyle
.AddRows)
318
private static bool xAssignRowsAndColumns(ContainerInfo containerInfo, LayoutInfo[] childrenInfo, int maxColumns, int maxRows,
TableLayoutPanelGrowStyle
growStyle)
454
if (growStyle ==
TableLayoutPanelGrowStyle
.FixedSize)
460
else if (growStyle ==
TableLayoutPanelGrowStyle
.AddRows)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (2)
128
[DefaultValue(
TableLayoutPanelGrowStyle
.AddRows)]
129
public
TableLayoutPanelGrowStyle
GrowStyle
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (2)
182
[DefaultValue(
TableLayoutPanelGrowStyle
.AddRows)]
183
public
TableLayoutPanelGrowStyle
GrowStyle
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (3)
466
if (Table.GrowStyle ==
TableLayoutPanelGrowStyle
.AddRows)
474
else if (Table.GrowStyle ==
TableLayoutPanelGrowStyle
.AddColumns)
719
if (Table.GrowStyle !=
TableLayoutPanelGrowStyle
.FixedSize)