ContextMenuから派生しており、派生クラス内でContextMenuClosingイベントを手動で発生させる必要があります。次の2つの方法を試しました。
// On runtime tells me it can't convert from
// "System.Windows.RoutedEventArgs" to
// "System.Windows.Controls.ContextMenuEventArgs"
RaiseEvent(new RoutedEventArgs(ContextMenuClosingEvent));
// Second attempt: On compile time tells me,
// there's no constructor for ContextMenuEventArgs
OnContextMenuClosing(new ContextMenuEventArgs());
RoutedEventsは初めてですが、ContextMenuClosingイベントを手動で発生させる方法を教えてもらえますか?ありがとう!