Exemple #1
0
 public FormIgra(FormaDijalog d)
 {
     InitializeComponent();
     RoditeljForma = d;
     d.Close();
     this.Cursor = new Cursor(Properties.Resources.cursor.Handle);
 }
Exemple #2
0
        private void btnNovaIgra_Click(object sender, EventArgs e)
        {
            FormaDijalog fd = new FormaDijalog(this);

            if (fd.ShowDialog() == DialogResult.OK)
            {
            }
            this.Show();
        }