1 write to _table
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\Behavior\TableLayoutPanelBehavior.cs (1)
31
_table
= panel;
14 references to _table
System.Windows.Forms.Design (14)
System\Windows\Forms\Design\Behavior\TableLayoutPanelBehavior.cs (14)
59
cs.OnComponentChanged(
_table
, _changedProp, null, null);
108
_changedProp = TypeDescriptor.GetProperties(
_table
)[isColumn ? "ColumnStyles" : "RowStyles"];
109
int[] widths = isColumn ?
_table
.GetColumnWidths() :
_table
.GetRowHeights();
135
cs.OnComponentChanging(
_table
, _changedProp);
167
if ((_styles is null || isColumn != _currentColumnStyles) &&
_table
is not null)
169
_styles = ((TableLayoutStyleCollection)_changedProp.GetValue(
_table
)).Cast<TableLayoutStyle>().ToList();
251
if (isColumn &&
_table
.RightToLeft == RightToLeft.Yes)
261
int[] oldWidths = isColumn ?
_table
.GetColumnWidths() :
_table
.GetRowHeights();
275
_table
.SuspendLayout();
356
_table
.ResumeLayout(true);
363
int[] updatedWidths = isColumn ?
_table
.GetColumnWidths() :
_table
.GetRowHeights();