40

在 WPF 窗口中,我如何知道它是否已打开?

我的目标是当时只打开 1 个窗口实例。

所以,我在父窗口中的伪代码是:

if (this.m_myWindow != null)
{
    if (this.m_myWindow.ISOPENED) return;
}

this.m_myWindow = new MyWindow();
this.m_myWindow.Show();

编辑:

我找到了解决我最初问题的解决方案。窗口.ShowDialog();

它阻止用户打开任何其他窗口,就像模式弹出窗口一样。使用此命令,无需检查窗口是否已打开。

4

9 回答 9

89

在类WPF中有一个打开的集合WindowsApplication您可以创建一个辅助方法来检查窗口是否打开。

这是一个示例,它将检查Window某个特定名称TypeWindow具有特定名称的 a 是否已打开,或两者兼而有之。

public static bool IsWindowOpen<T>(string name = "") where T : Window
{
    return string.IsNullOrEmpty(name)
       ? Application.Current.Windows.OfType<T>().Any()
       : Application.Current.Windows.OfType<T>().Any(w => w.Name.Equals(name));
}

用法:

if (Helpers.IsWindowOpen<Window>("MyWindowName"))
{
   // MyWindowName is open
}

if (Helpers.IsWindowOpen<MyCustomWindowType>())
{
    // There is a MyCustomWindowType window open
}

if (Helpers.IsWindowOpen<MyCustomWindowType>("CustomWindowName"))
{
    // There is a MyCustomWindowType window named CustomWindowName open
}
于 2013-04-25T01:07:15.430 回答
13

您可以检查是否m_myWindow==null并且只有在创建和显示窗口。当窗口关闭时,将变量设置回 null。

    if (this.m_myWindow == null)
    {
           this.m_myWindow = new MyWindow();
           this.m_myWindow.Closed += (sender, args) => this.m_myWindow = null;           
           this.m_myWindow.Show();
    }
于 2013-04-24T21:11:32.800 回答
7

这是使用 LINQ 实现此目的的另一种方法。

using System.Linq;

...

public static bool IsOpen(this Window window)
{
    return Application.Current.Windows.Cast<Window>().Any(x => x == window);
}

用法:

bool isOpen = myWindow.IsOpen();
于 2017-04-21T13:29:06.060 回答
2

如果发现需要激活窗口,可以使用下面的代码:

//activate a window found
//T = Window

 Window wnd = Application.Current.Windows.OfType<T>().Where(w => w.Name.Equals(nome)).FirstOrDefault();
 wnd.Activate();
于 2015-03-09T14:37:46.703 回答
1

在你的类中放置一个静态布尔值,命名_open或类似的东西。然后在构造函数中执行以下操作:

if (_open)
{
    throw new InvalidOperationException("Window already open");
}
_open = true;

在 Closed 事件中:

_open = false;
于 2013-04-24T21:35:54.310 回答
0

是你搜索的吗?

if (this.m_myWindow != null)
{
    if (this.m_myWindow.IsActive) return;
}

this.m_myWindow = new MyWindow();
this.m_myWindow.Show();

如果你想要一个单例,你应该阅读这个:我们如何为一个窗口创建一个单例实例?

于 2013-04-25T07:16:43.200 回答
0
    void  pencereac<T> (int Ops) where T : Window , new()
    {
        if (!Application.Current.Windows.OfType<T>().Any()) // Check is Not Open, Open it.
        {
           var wind = new T();
            switch (Ops)
            {
                case 1:
                    wind.ShowDialog();
                    break;
                case 0:
                    wind.Show();
                    break;
            }
        }
        else Application.Current.Windows.OfType<T>().First().Activate(); // Is Open Activate it.
    }

库拉尼米:

void Button_1_Click(object sender, RoutedEventArgs e)
{
  pencereac<YourWindow>(1);
}
于 2017-01-29T02:10:01.257 回答
0

如果您想检查第二个表单是否已经打开并避免在按钮单击时再次打开它,则此方法有效。

int formcheck = 0;
private void button_click()
{
   Form2Name myForm2 = new Form2Name();
   if(formcheck == 0)
   {
      myForm2.Show(); //Open Form2 only if its not active and formcheck == 0
      // Do Somethin

      formcheck = 1; //Set it to 1 indicating that Form2 have been opened
   {   
{
于 2020-05-12T21:33:51.803 回答
-1
public bool IsWindowOpen<T>(string name = "") where T : Window
{
    return Application.Current.Windows.OfType<T>().Any(w => w.GetType().Name.Equals(name));               
}
于 2019-12-04T17:40:53.680 回答