internal static void Abrir() { if (frmSorteio == null) { frmSorteio = new FormSorteio(); frmSorteio.Show(); } else { frmSorteio.Focus(); } }
void imgSorteio_Click(object sender, EventArgs e) { //new FormVideo().Show(); FormSorteio.Abrir(); }
void FormSorteio_FormClosed(object sender, FormClosedEventArgs e) { frmSorteio = null; }