我有两个 WPF 窗口。
Window1 的按钮调用 Window2,Window2 更新了一些东西,然后我想在 Window1 中停止的地方继续进行。
这是 Window1 中 button_Click 中的代码:
Window2 window = new Window2();
window.Show();
* wait until Window2 closes
//continue with other actions
我该如何等待?
我看到了这个:wpf c# button wait for a button press
但是如何从不同的(已经关闭的)窗口传递它?