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

247 B

System.Windows.Input

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