c# – Application.OpenForms的WPF版本

我有一个应用程序,我将不得不进入另一个打开的
WPF窗口.在WinForms中,我能够使用:

MainWindow main = (MainWindow)Application.OpenForms["MainWindow"];

能够访问表单.现在在WPF中它不存在.我在这个网站上看到了其他相关的post,但是它使用的是未包含在调用中的Application.Window.我只有 :

>目前
>等于
> GetContentStream
> GetCookie
> GetRemoteStream
> GetResourceStream
> LoadComponet
> RefrenceEquals
> ResourceAssembly
> SetCookie

所以我的问题是,OpenForms是否有不同的版本,或者只是采用不同的方式.

最佳答案 试着看看:Application.Current.更具体地说,Application.Current.Windows.

点赞