Пример #1
0
 internal static void Abrir()
 {
     if (frmSorteio == null)
     {
         frmSorteio = new FormSorteio();
         frmSorteio.Show();
     }
     else
     {
         frmSorteio.Focus();
     }
 }
Пример #2
0
 void imgSorteio_Click(object sender, EventArgs e)
 {
     //new FormVideo().Show();
     FormSorteio.Abrir();
 }
Пример #3
0
 void FormSorteio_FormClosed(object sender, FormClosedEventArgs e)
 {
     frmSorteio = null;
 }