public void method_12()
 {
     foreach (Control control in this.panel1.Controls)
     {
         control.Dispose();
     }
     this.panel1.Controls.Clear();
     IntraChat_LOGIN intraChat_LOGIN = new IntraChat_LOGIN();
     intraChat_LOGIN.TopLevel = false;
     intraChat_LOGIN.FormBorderStyle = FormBorderStyle.None;
     intraChat_LOGIN.Visible = true;
     this.panel1.Controls.Add(intraChat_LOGIN);
 }
Beispiel #2
0
 public void method_12()
 {
     foreach (Control control in this.panel1.Controls)
     {
         control.Dispose();
     }
     this.panel1.Controls.Clear();
     IntraChat_LOGIN t_login = new IntraChat_LOGIN {
         TopLevel = false,
         FormBorderStyle = FormBorderStyle.None,
         Visible = true
     };
     this.panel1.Controls.Add(t_login);
 }