2 instantiations of SettingsStub
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStripSettingsManager.cs (2)
40
savedToolStripSettingsObjects.Add(new
SettingsStub
(toolStripSettings));
58
SettingsStub stub =
new
(toolStrip);
9 references to SettingsStub
System.Windows.Forms (9)
System\Windows\Forms\Controls\ToolStrips\ToolStripSettingsManager.cs (9)
26
List<
SettingsStub
> savedToolStripSettingsObjects = [];
58
SettingsStub
stub = new(toolStrip);
90
private void ApplySettings(List<
SettingsStub
> toolStripSettingsToApply)
104
Dictionary<object, List<
SettingsStub
>> toolStripPanelDestinationHash = [];
106
foreach (
SettingsStub
toolStripSettings in toolStripSettingsToApply)
123
if (!toolStripPanelDestinationHash.TryGetValue(destinationPanel, out List<
SettingsStub
>? value))
154
if (toolStripPanelDestinationHash.TryGetValue(toolStripPanelName, out List<
SettingsStub
>? stubSettings))
156
foreach (
SettingsStub
settings in stubSettings)
174
private static void ApplyToolStripSettings(ToolStrip? toolStrip,
SettingsStub
settings, Dictionary<string, ToolStrip> itemLocationHash)