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 父窗口,其中包含一个带有主菜单页面的框架。我需要该页面和框架内的任何其他页面与主窗口的对象进行通信。
我究竟如何才能做到这一点?我需要使用代表吗?
最简单的解决方案是创建新的类文件
Class MainWindowAccesser { public static MainWindow mw; }
然后在 MainWindow 构造函数中设置
MainWindowAccesser.mw = this;