12 references to _oleCmdMappingTable
PresentationFramework (12)
src\Framework\MS\Internal\AppModel\OleCmdHelper.cs (12)
199
mappingTable =
_oleCmdMappingTable
.Value;
218
if (
_oleCmdMappingTable
.Value == null)
220
_oleCmdMappingTable
.Value = new SortedList(10);
223
_oleCmdMappingTable
.Value.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_SAVE, new CommandWithArgument(ApplicationCommands.Save));
224
_oleCmdMappingTable
.Value.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_SAVEAS, new CommandWithArgument(ApplicationCommands.SaveAs));
225
_oleCmdMappingTable
.Value.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_PRINT, new CommandWithArgument(ApplicationCommands.Print));
226
_oleCmdMappingTable
.Value.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_CUT, new CommandWithArgument(ApplicationCommands.Cut));
227
_oleCmdMappingTable
.Value.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_COPY, new CommandWithArgument(ApplicationCommands.Copy));
228
_oleCmdMappingTable
.Value.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_PASTE, new CommandWithArgument(ApplicationCommands.Paste));
229
_oleCmdMappingTable
.Value.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_PROPERTIES, new CommandWithArgument(ApplicationCommands.Properties));
232
_oleCmdMappingTable
.Value.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_REFRESH, new CommandWithArgument(NavigationCommands.Refresh));
233
_oleCmdMappingTable
.Value.Add((uint)UnsafeNativeMethods.OLECMDID.OLECMDID_STOP, new CommandWithArgument(NavigationCommands.BrowseStop));