using System.Windows.Input; using Prism.Commands; using Prism.Mvvm; namespace MaterialModernWPF.View { public class ShellViewModel : BindableBase { public ShellViewModel() { GcCollectCommand = new DelegateCommand(System.GC.Collect); } public ICommand GcCollectCommand {get; } } }