2017-5-9 打开唯一窗体的实例操作

Posted Zoe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017-5-9 打开唯一窗体的实例操作相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 打开唯一窗体
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        List<Form> flist = new List<Form>();
        private void button1_Click(object sender, EventArgs e)
        {
            bool has = false;
            Form2 f2 = new Form2(this);
            foreach(Form f in flist)
            {
                if(f is Form2)
                {
                    has = true;
                    f2 = f as Form2;
                }
            }
            if (has)
            {
                f2.WindowState = FormWindowState.Normal;
                //焦点进入
                f2.Focus();
            }
            else 
            {
                flist.Add(f2);
                f2.Show();
            }
        }
        public void deleteform(Form f) 
        {
            flist.Remove(f);
        }
    }
}

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 打开唯一窗体
{
    public partial class Form2 : Form
    {
        Form1 F1 = null;
        public Form2(Form1 f1)
        {
            InitializeComponent();
            F1 = f1;
        }

        private void Form2_FormClosing(object sender, FormClosingEventArgs e)
        {
            F1.deleteform(this);
        }
    }
}

 

以上是关于2017-5-9 打开唯一窗体的实例操作的主要内容,如果未能解决你的问题,请参考以下文章

winform打开唯一窗体构造函数传值

winform打开唯一窗口构造函数传值

Winform跨窗体操作控件(使用委托)

构造函数传值 和仅打开唯一窗体

C# winform 跨线程操作winform程序窗体

2017-04-27布局及容器控件打开多窗体构造函数传值打开唯一窗口