2 instantiations of SettingsStub
System.Windows.Forms (2)
winforms\Managed\System\WinForms\ToolStripSettings.cs (2)
130savedToolStripSettingsObjects.Add(new SettingsStub(toolStripSettings)); 142SettingsStub stub = new SettingsStub(toolStrip);
8 references to SettingsStub
System.Windows.Forms (8)
winforms\Managed\System\WinForms\ToolStripSettings.cs (8)
142SettingsStub stub = new SettingsStub(toolStrip); 181Dictionary<object, List<SettingsStub>> toolStripPanelDestinationHash = new Dictionary<object, List<SettingsStub>>(); 183foreach (SettingsStub toolStripSettings in toolStripSettingsToApply) { 197toolStripPanelDestinationHash[destinationPanel] = new List<SettingsStub>(); 222List<SettingsStub> stubSettings = toolStripPanelDestinationHash[toolStripPanelName]; 225foreach (SettingsStub settings in stubSettings) { 241private void ApplyToolStripSettings(ToolStrip toolStrip, SettingsStub settings, Dictionary<string, ToolStrip> itemLocationHash) {