Shuffle window (only visual)

This commit is contained in:
2021-10-05 14:23:23 +02:00
parent 62a3220f7f
commit e0d640532c
7 changed files with 126 additions and 5 deletions

View File

@ -71,6 +71,18 @@ namespace unison
}
}
public ICommand Shuffle
{
get
{
return new DelegateCommand
{
CommandAction = () => ((MainWindow)Application.Current.MainWindow).Shuffle_Clicked(null, null),
CanExecuteFunc = () => true
};
}
}
public ICommand Settings
{
get