首页 > Windows开发 > 详细

winform 子窗体调用主窗体的方法

时间:2021-09-05 16:10:50      阅读:38      评论:0      收藏:0      [点我收藏+]

?

1.主窗体

    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Form2 frm2 = new Form2();
            frm2.refreshlist += Frm2_refreshlist;
            frm2.ShowDialog();
        }

        private void Frm2_refreshlist()
        {
            MessageBox.Show("列表刷新了");
        }
    }
技术分享图片

2.子窗体 

    public partial class Form2 : Form
    {
        public event Action refreshlist;
        public Form2()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            this.DialogResult = DialogResult.OK;
            this.Close();
            this.Dispose();
            if (refreshlist != null)
            {
                refreshlist();
            }
        }
    }
技术分享图片

 

?

winform 子窗体调用主窗体的方法

原文:https://www.cnblogs.com/songjuntao/p/15227958.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!