Fix Warning

This commit is contained in:
punker76
2020-11-23 11:58:19 +01:00
parent 20b0edef4a
commit a93c06ed96

View File

@@ -20,6 +20,10 @@ namespace NotifyIconWpf.Sample.ShowCases.Tutorials
return true; return true;
} }
public event EventHandler CanExecuteChanged; public event EventHandler CanExecuteChanged
{
add => CommandManager.RequerySuggested += value;
remove => CommandManager.RequerySuggested -= value;
}
} }
} }