码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2017-05-10 09:45:11      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:image   ace   button   public   blog   rem   rms   void   space   

技术分享

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 打开唯一窗体的实例操作

标签:image   ace   button   public   blog   rem   rms   void   space   

原文地址:http://www.cnblogs.com/zhengqian/p/6834195.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!