コード例 #1
0
ファイル: UIManager.cs プロジェクト: VE-2016/WinDbgEx
 private void Debugger_Error(object sender, ErrorEventArgs e)
 {
     InvokeAsync(() => {
         MessageBoxService.SetOwner(Application.Current.MainWindow);
         MessageBoxService.ShowMessage($"Error: {ErrorToString(e)}", Constants.Title, MessageBoxButton.OK, MessageBoxImage.Error);
     });
 }