6

アプリケーションで標準のMessageBoxをモーダルウィンドウとして表示しようとしていますが、最終的には非モーダルになります。最初の呼び出しでは、以下のコードで、モーダルで表示される標準のMessageBoxを表示しています。2番目の呼び出しでは、メインウィンドウのディスパッチャーを取得しても、モーダルとして表示されません。

Dispatcher disp = Application.Current.MainWindow.Dispatcher;
//First call, shown MODAL
if (this.messageService.ShowYesNo("Do you want to update the Word document, this will regenerate inspectiondata for document", "") == MessageBoxResult.Yes)
{
    using (new WaitCursor())
    {
        _eventAggregator.GetEvent<ProgressBarRequestShow>().Publish("");
        worker = new BackgroundWorker();

        worker.DoWork += delegate(object s, DoWorkEventArgs args)
        {
            AITUpdateProgressDelegate update = new AITUpdateProgressDelegate(UpdateProgress);
            this.docService.UpdateWorddocument(this.docService.GetCurrentDocumentFilePath, update);
        };

        worker.RunWorkerCompleted += delegate(object s, RunWorkerCompletedEventArgs args)
        {
            try
            {
                // Second call NOT MODAL
                disp.Invoke((Action)delegate()
                {
                    this.messageService.ShowInformation("Document generated, choose Open in Word in main toolbar to show document", "");
                });
                _eventAggregator.GetEvent<ProgressBarRequestHide>().Publish("");
            }
            finally
            {
            }
        };
        worker.RunWorkerAsync();
    }
}
4

1 に答える 1

2

これはあなたが探しているもののように見えます。メッセージボックスの呼び出しには、「owner」パラメータが含まれています。私は以前に行ったのと同様の概念をコードで使用し、ウィンドウをモーダルとして示しました。サンプルコードはリンクからダウンロードすることもできます。

于 2012-05-15T11:40:12.873 に答える