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