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)
59cs.OnComponentChanged(_table, _changedProp, null, null); 108_changedProp = TypeDescriptor.GetProperties(_table)[isColumn ? "ColumnStyles" : "RowStyles"]; 109int[] widths = isColumn ? _table.GetColumnWidths() : _table.GetRowHeights(); 135cs.OnComponentChanging(_table, _changedProp); 167if ((_styles is null || isColumn != _currentColumnStyles) && _table is not null) 169_styles = ((TableLayoutStyleCollection)_changedProp.GetValue(_table)).Cast<TableLayoutStyle>().ToList(); 251if (isColumn && _table.RightToLeft == RightToLeft.Yes) 261int[] oldWidths = isColumn ? _table.GetColumnWidths() : _table.GetRowHeights(); 275_table.SuspendLayout(); 356_table.ResumeLayout(true); 363int[] updatedWidths = isColumn ? _table.GetColumnWidths() : _table.GetRowHeights();