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.
我对 MVVM 和 WPF 非常陌生。
我创建的应用程序有两个按钮,openWindow 和 closeWindow。我设法使用 ICommand 连接 openWindow 并打开一个新窗口 :) 我的问题是当我按下 closeWindow 时,如何关闭那个打开的窗口?
我没有使用任何 MVVM 框架,例如 MVVM Light 等。
非常感激。
为什么要从另一个窗口关闭一个窗口?对我来说毫无意义,而且它不是那么用户友好。尽管如此,您始终可以在视图模型中公开一个视图可以订阅和响应的事件。您不会用此类事件破坏 mvvm 模式。