Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MDI Form detecting with a child form is added or removed

Is there an event I can use to tell if a child form has been added or removed from the MDI parent?

like image 890
Malfist Avatar asked Oct 16 '25 04:10

Malfist


1 Answers

Yes. On your main MDI form, wire up to the MdiChildActivated Event.

Like so:

public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            this.MdiChildActivate += new EventHandler(Form1_MdiChildActivate);
        }

        void Form1_MdiChildActivate(object sender, EventArgs e)
        {
            MessageBox.Show("Activated");
        }

        private void addToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form form2 = new Form2();
            form2.MdiParent = this;
            form2.Show();
        }
    }

And that event will fire when the child form is both activated or deactivated.

like image 156
Chris Holmes Avatar answered Oct 17 '25 16:10

Chris Holmes



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!