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)));