Ejemplo n.º 1
0
 private void optionsButton_Click(object sender, EventArgs e)
 {
     if (optionsForm == null || !optionsForm.Visible)
     {
         optionsForm = new OptionsForm();
         optionsForm.Show();
     }
     else
     {
         optionsForm.BringToFront();
     }
 }
Ejemplo n.º 2
0
        public ShuffleCoreForm()
        {
            InitializeComponent();

            optionsForm = null;
        }