gpt4 book ai didi

c# - 无法访问在同一个类中声明的类实例

转载 作者:行者123 更新时间:2023-11-30 22:13:48 24 4
gpt4 key购买 nike

我有一个首选项窗口,需要检测它是否打开。如果它是打开的,我会关闭它。它是关闭的,我打开它。我在类中声明了一个类实例,这样我就可以在带有 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;
}

最佳答案

您不需要保留对打开的 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();

实际上,即使您有多个 Window,使用 Linq 也会更容易:

using System.Linq;
using Views.Dialogs;
...
Preferences preferencesWindow = Application.Current.Windows.OfType<Preferences>().
Where(w => w.Name = NameOfYourWindow).First();

关于c# - 无法访问在同一个类中声明的类实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18860164/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com