16 lines
340 B
C#
16 lines
340 B
C#
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; }
|
|
}
|
|
} |