3 instantiations of TableLayoutSettings
System.Windows.Forms (3)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1765
ToolStripLayoutStyle.Table => new
TableLayoutSettings
(this),
System\Windows\Forms\Layout\TableLayout.cs (1)
60
return new
TableLayoutSettings
(owner);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettingsTypeConverter.cs (1)
52
TableLayoutSettings settings =
new
();
16 references to TableLayoutSettings
System.Windows.Forms (16)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (3)
243
private
TableLayoutSettings
TableLayoutSettings
245
get { return (
TableLayoutSettings
)LayoutSettings!; }
458
TableLayoutSettings
settings = TableLayoutSettings;
System\Windows\Forms\Layout\TableLayout.cs (1)
58
internal static
TableLayoutSettings
CreateSettings(IArrangedElement owner)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (2)
24
private readonly
TableLayoutSettings
_tableLayoutSettings;
37
public
TableLayoutSettings
LayoutSettings
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (3)
51
if (converter.ConvertFromInvariantString(stringVal) is
TableLayoutSettings
tls)
215
internal void ApplySettings(
TableLayoutSettings
settings)
477
TypeDescriptor.RegisterType<
TableLayoutSettings
>();
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.TableLayoutSettingsStub.cs (1)
29
internal void ApplySettings(
TableLayoutSettings
settings)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettingsTypeConverter.cs (5)
52
TableLayoutSettings
settings = new();
65
if (value is
TableLayoutSettings
tableLayoutSettings && (destinationType == typeof(string)))
74
foreach (
TableLayoutSettings
.ControlInformation c in tableLayoutSettings.GetControlsInformation())
149
private static void ParseControls(
TableLayoutSettings
settings, XmlNodeList controlXmlFragments)
170
private static void ParseStyles(
TableLayoutSettings
settings, XmlNodeList controlXmlFragments, bool columns)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutStyle.cs (1)
9
[TypeConverter(typeof(
TableLayoutSettings
.StyleConverter))]