• 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);
            }
        }
    }
  • 相关阅读:
    堆排序(改进的简单选择排序)
    希尔排序(改进的直接插入排序)
    直接插入排序
    简单选择排序
    冒泡排序&排序算法简介
    处理器的体系结构
    虚拟存储器
    Python函数
    在主项目中添加子项目
    聚合分组查询
  • 原文地址:https://www.cnblogs.com/zhengqian/p/6834195.html
Copyright © 2020-2023  润新知