我有一个偏好窗口,需要检测它是否打开。如果它是打开的,我然后关闭它。它关闭了,我打开它。我在类中声明了一个类实例,因此我可以在if语句的情况下访问它。当我试图访问它时,似乎我不能。在这种情况下我无法访问_prefsForm。这是MVVM。
以下是代码:
Private Views.Dialogs.Preferences _prefsForm;
....
case 4:
if (_prefsForm == null)
{
_prefsForm = new Views.Dialogs.Preferences();
wih = new WindowInteropHelper(_prefsForm);
wih.Owner = hwnd;
_prefsForm.Show();
_editorState = EditorState.DISPLAYPREFS;
}
else
{
_prefsForm.Hide();
_editorState = EditorState.VIEWDATA;
_prefsForm = null;
}
break;
}
答案 0 :(得分:3)
您无需保留对打开的Window
对象的引用。您可以像这样访问您的开放Window
:
Views.Dialogs.Preferences preferencesWindow = null;
foreach (Window window in Application.Current.Windows)
{
if (window is Views.Dialogs.Preferences)
{
preferencesWindow = (Views.Dialogs.Preferences)window;
break;
}
}
if (preferencesWindow.Visiblity == Visibility.Visible) preferencesWindow.Hide();
else preferencesWindow.Show();
如果您只使用其中一个Window
,则使用Linq
会更容易:
using System.Linq;
using Views.Dialogs;
...
Preferences preferencesWindow =
Application.Current.Windows.OfType<Preferences>().First();
实际上,使用Linq
即使您拥有多个Window
s,也会更轻松:
using System.Linq;
using Views.Dialogs;
...
Preferences preferencesWindow = Application.Current.Windows.OfType<Preferences>().
Where(w => w.Name = NameOfYourWindow).First();