Add Radios to the systray

This commit is contained in:
2021-10-04 14:06:20 +02:00
parent 196b93c7f3
commit 62835065c0
6 changed files with 31 additions and 2 deletions

View File

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