dotnet-core/release-notes/1.0/1.0.0-api/1.0.0-api_System.Windows.Input.md
2017-07-05 14:24:38 -07:00

12 lines
247 B
Markdown

# System.Windows.Input
``` diff
+namespace System.Windows.Input {
+ public interface ICommand {
+ event EventHandler CanExecuteChanged;
+ bool CanExecute(object parameter);
+ void Execute(object parameter);
+ }
+}
```