如何检查窗口是否打开并关闭

发布于 2024-12-01 23:12:52 字数 400 浏览 0 评论 0 原文

我正在研究C# winforms

我有 CS 文件中存在的函数 Validate() 。当我调用函数 Validate() 时,它会使用 ErrorForm 打开,

ErrorForm ew = new ErrorForm(Errors); // Errors is list<string>
ew.Show();

但是当我再次调用它时,会打开一个新窗口,并且我以前的窗口也会打开。我必须手动关闭该窗口。

是否有任何可用的方法,如果我再次调用 validate(),它将关闭当前的 ErrorForm 并打开新的 ErrorForm

I am working on C# winforms.

I have function Validate() which is present in the CS file. When I call function Validate() it opens ErrorForm using

ErrorForm ew = new ErrorForm(Errors); // Errors is list<string>
ew.Show();

But when I call it again, a new window opens and my previous window is open too. I have to close that window manually.

Is there any method available such that if I call validate() again, it will close the current ErrorForm and will open new ErrorForm.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

梦晓ヶ微光ヅ倾城 2024-12-08 23:12:52

试试这个:

var f1=Application.OpenForms["ErrorForm"];       
if(f1!=null) 
  f1.Close(); 

f1=  new ErrorForm(Errors);
f1.Show();

try this one:

var f1=Application.OpenForms["ErrorForm"];       
if(f1!=null) 
  f1.Close(); 

f1=  new ErrorForm(Errors);
f1.Show();
总以为 2024-12-08 23:12:52

尝试这样的东西,一个伪代码..

public class MyClass 
{
    ErrorForm ew = null; 

    public void Validate() 
    {
       if(ew !=null && !ew.IsDisposed) 
          ew.Close(); 

       ew =  new ErrorForm(Errors);
       ew.Show();
    }
}

Try something like this, a pseudocode..

public class MyClass 
{
    ErrorForm ew = null; 

    public void Validate() 
    {
       if(ew !=null && !ew.IsDisposed) 
          ew.Close(); 

       ew =  new ErrorForm(Errors);
       ew.Show();
    }
}
卸妝后依然美 2024-12-08 23:12:52

最简单的解决方案是调用 ew.ShowDialog(this) ,它将 ErrorForm 保持在主窗体的顶部。

如果您确实想调用 Form.Show() 方法,您可以实现 单例模式并调用 GetInstance。在 GetInstance 方法中,您可以关闭它或重用它。

public class ErrorForm 
{
   private static ErrorForm instance;

   private ErrorForm() {}

   public static Singleton GetInstance()
   {
      if (instance == null)
      {
         instance = new ErrorForm();
      }
      else //OR Reuse it
      {
          instance.Close(); 
          instance = new ErrorForm();
      }
      return instance;      
   }

   public Errors ErrorMessages
   {
      set {...}
   }
}

在验证方法中

public void Validate() 
    {
       ErrorForm ef = ErrorForm.GetInstance();
       ef.ErrorMessages = errors;
       ef.Show();

    }

Simplest solution is calling ew.ShowDialog(this) which keeps the ErrorForm on top of your main form.

If you really want to call Form.Show() method, you could implement Singleton pattern in ErrorForm and call GetInstance. In the GetInstance method you can close it or reuse it.

public class ErrorForm 
{
   private static ErrorForm instance;

   private ErrorForm() {}

   public static Singleton GetInstance()
   {
      if (instance == null)
      {
         instance = new ErrorForm();
      }
      else //OR Reuse it
      {
          instance.Close(); 
          instance = new ErrorForm();
      }
      return instance;      
   }

   public Errors ErrorMessages
   {
      set {...}
   }
}

In the validate method

public void Validate() 
    {
       ErrorForm ef = ErrorForm.GetInstance();
       ef.ErrorMessages = errors;
       ef.Show();

    }
假情假意假温柔 2024-12-08 23:12:52

您可以使用以下可作为静态属性访问的集合:
Application.OpenForms

You may use following collection accessible as static property:
Application.OpenForms

酸甜透明夹心 2024-12-08 23:12:52

您可以使用ShowDialog()

you can use the ShowDialog()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文