1 write to _oleCmdMappingTable
PresentationFramework (1)
MS\Internal\AppModel\OleCmdHelper.cs (1)
186
_oleCmdMappingTable
= new SortedList(10);
11 references to _oleCmdMappingTable
PresentationFramework (11)
MS\Internal\AppModel\OleCmdHelper.cs (11)
172
mappingTable =
_oleCmdMappingTable
;
184
if (
_oleCmdMappingTable
== null)
189
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_SAVE, new CommandWithArgument(ApplicationCommands.Save));
190
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_SAVEAS, new CommandWithArgument(ApplicationCommands.SaveAs));
191
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_PRINT, new CommandWithArgument(ApplicationCommands.Print));
192
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_CUT, new CommandWithArgument(ApplicationCommands.Cut));
193
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_COPY, new CommandWithArgument(ApplicationCommands.Copy));
194
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_PASTE, new CommandWithArgument(ApplicationCommands.Paste));
195
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_PROPERTIES, new CommandWithArgument(ApplicationCommands.Properties));
198
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_REFRESH, new CommandWithArgument(NavigationCommands.Refresh));
199
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_STOP, new CommandWithArgument(NavigationCommands.BrowseStop));