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