1
0
mirror of synced 2025-12-19 18:06:02 -05:00
Files
core/release-notes/1.0/1.0.0-api/1.0.0-api_System.Windows.Input.md
Rich Lander 8c8e5836c3 Fix linter errors in repo (#9689)
* Fix linter errors

* Update links
2025-01-13 21:40:52 -08:00

246 B

System.Windows.Input

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