I have a scenario where a control has an event wired up in XAML, say a Button.Click.
Somewhere else in my code, a security check is applied which mean I need to disable said event, but I do not have access to the normal -= syntax to remove it.
How else can I remove or disable this event?
Thanks, Dave