/// <summary> /// Initializes a new instance of the <see cref="ViewModelBase"/> class. /// </summary> public ViewModelBase() { Commands = new CommandStorage(); }
/// <summary> /// Store the command map for later /// </summary> public CommandStorageDescriptor(ICustomTypeDescriptor descriptor, CommandStorage storage) : base(descriptor) { _storage = storage; }