-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
currently:
EventManager.RegisterClassHandler(typeof(RadioButton), UIElement.PreviewTouchDownEvent, new EventHandler((o, e) => Toggle((RadioButton)o!, e)));
should be:
EventManager.RegisterClassHandler(typeof(RadioButton), UIElement.PreviewTouchDownEvent, new EventHandler<TouchEventArgs>((o, e) => Toggle((RadioButton)o!, e)));
Metadata
Metadata
Assignees
Labels
No labels