2 types derived from TableLayoutStyle
System.Windows.Forms (2)
winforms\Managed\System\WinForms\TableLayoutSettings.cs (2)
723public class ColumnStyle : TableLayoutStyle { 752public class RowStyle : TableLayoutStyle {
35 references to TableLayoutStyle
System.Windows.Forms (35)
winforms\Managed\System\WinForms\Layout\TableLayout.cs (18)
674TableLayoutStyle style = i < styles.Count ? (TableLayoutStyle)styles[i] : null; 677strip.MinSize = (int)Math.Round((double)((TableLayoutStyle)styles[i]).Size); 768TableLayoutStyle style = (TableLayoutStyle) styles[i]; 784TableLayoutStyle style = (TableLayoutStyle) styles[i]; 912if (lastPercent < styles.Count && ((TableLayoutStyle) styles[lastPercent]).SizeType == SizeType.Percent) { 979return (index < styles.Count) && ((TableLayoutStyle)styles[index]).SizeType == SizeType.Absolute; 1005TableLayoutStyle style = (TableLayoutStyle) styles[i]; 1071SizeType sizeType = i < styles.Count ? ((TableLayoutStyle)styles[i]).SizeType : SizeType.AutoSize; 1073TableLayoutStyle style = (TableLayoutStyle)styles[i]; 1093SizeType sizeType = i < styles.Count ? ((TableLayoutStyle)styles[i]).SizeType : SizeType.AutoSize; 1104TableLayoutStyle style = (TableLayoutStyle)styles[i]; 1133SizeType sizeType = i < styles.Count ? ((TableLayoutStyle)styles[i]).SizeType : SizeType.AutoSize;
winforms\Managed\System\WinForms\TableLayoutSettings.cs (3)
684if (destinationType == typeof(InstanceDescriptor) && value is TableLayoutStyle) { 685TableLayoutStyle style = (TableLayoutStyle) value;
winforms\Managed\System\WinForms\TableLayoutStyleCollection.cs (14)
39EnsureNotOwned((TableLayoutStyle)style); 40((TableLayoutStyle)style).Owner = this.Owner; 48public int Add(TableLayoutStyle style) { 56EnsureNotOwned((TableLayoutStyle)style); 57((TableLayoutStyle)style).Owner = this.Owner; 68TableLayoutStyle style = (TableLayoutStyle) value; 78public TableLayoutStyle this[int index] { 79get { return (TableLayoutStyle)((IList)this)[index]; } 86((TableLayoutStyle)style).Owner = null; 93foreach(TableLayoutStyle style in _innerList) { 102TableLayoutStyle style = (TableLayoutStyle) _innerList[index]; 123private void EnsureNotOwned(TableLayoutStyle style) {