Goran Bibic

Goran Bibic

  • 482
  • 2.9k
  • 198.1k

Show opened form ismdicontainer C#

Nov 4 2019 10:15 AM
I use form with option

IsMdiContsiner = True

Need when click on button to show child form in container

If is opened to show that opened child form, if not opened to open new
 
  1. private void KnjigaIzlaznihFakturaToolStripMenuItem1_Click(object sender, EventArgs e)  
  2.        {  
  3.            _6102_KIF newMDIChild = new _6102_KIF  
  4.            {  
  5.                MdiParent = this  
  6.            };  
  7.            newMDIChild.Show();  
  8.        } 
 

Answers (1)