예제 #1
0
 internal static void Abrir()
 {
     if (frmSorteio == null)
     {
         frmSorteio = new FormSorteioNum();
         frmSorteio.Show();
     }
     else
     {
         frmSorteio.Focus();
     }
 }
예제 #2
0
        private void btnSorteioNum_Click(object sender, EventArgs e)
        {
            FormSorteioNum abrir = new FormSorteioNum();

            abrir.Show();
        }
예제 #3
0
 private void FormSorteioNum_FormClosed(object sender, FormClosedEventArgs e)
 {
     frmSorteio = null;
 }