1 write to _oleCmdMappingTable
PresentationFramework (1)
MS\Internal\AppModel\OleCmdHelper.cs (1)
180
_oleCmdMappingTable
= new SortedList(10);
11 references to _oleCmdMappingTable
PresentationFramework (11)
MS\Internal\AppModel\OleCmdHelper.cs (11)
166
mappingTable =
_oleCmdMappingTable
;
178
if (
_oleCmdMappingTable
== null)
183
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_SAVE, new CommandWithArgument(ApplicationCommands.Save));
184
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_SAVEAS, new CommandWithArgument(ApplicationCommands.SaveAs));
185
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_PRINT, new CommandWithArgument(ApplicationCommands.Print));
186
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_CUT, new CommandWithArgument(ApplicationCommands.Cut));
187
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_COPY, new CommandWithArgument(ApplicationCommands.Copy));
188
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_PASTE, new CommandWithArgument(ApplicationCommands.Paste));
189
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_PROPERTIES, new CommandWithArgument(ApplicationCommands.Properties));
192
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_REFRESH, new CommandWithArgument(NavigationCommands.Refresh));
193
_oleCmdMappingTable
.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_STOP, new CommandWithArgument(NavigationCommands.BrowseStop));