Example #1
0
        private void StartButton_Click(object sender, EventArgs e)
        {
            var gameControl = new GetOutWinForm(this);

            Hide();
            gameControl.Show();
        }
Example #2
0
 public WinControl(GetOutWinForm getOutWinForm)
 {
     this.getOutWinForm = getOutWinForm;
 }
Example #3
0
 public HintControl(GetOutWinForm getOutWinForm)
 {
     InitializeComponent();
     this.getOutWinForm = getOutWinForm;
     DoubleBuffered     = true;
 }
Example #4
0
 public EnterPasswordControl(GetOutWinForm getOutWinForm)
 {
     InitializeComponent();
     this.getOutWinForm = getOutWinForm;
     //KeyDown += OnPress;
 }