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