dotnet-core/release-notes/1.0/1.0.0-api/1.0.0-api_System.Windows.Input.md

13 lines
247 B
Markdown
Raw Normal View History

2017-07-05 23:24:38 +02:00
# System.Windows.Input
``` diff
+namespace System.Windows.Input {
+ public interface ICommand {
+ event EventHandler CanExecuteChanged;
+ bool CanExecute(object parameter);
+ void Execute(object parameter);
+ }
+}
```