Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了一个问题。我的项目中有两个 WPF 窗口,我通过按下 WPF 主窗口上的按钮打开第二个 WPF 窗口。但是当我关闭第二个窗口时,我需要第一个窗口知道发生了这种情况并采取一些措施。我怎么做这个?我尝试了 isLoaded 和 Application.Current.Windows,但它们都没有按我的需要工作。有任何想法吗?先感谢您。
你可以这样使用。
public void CreateNewWindow() { Window wind=new Window(); wind.Closing+=yourClosingHandler; } void yourClosingHandler(object sender, CancelEventArgs e) { //do some staff }