private void bunifuFlatButton2_Click(object sender, EventArgs e)
        {
            shotScreen shotscreen = shotScreen.instance();

            shotscreen.txtKeyCode.ReadOnly    = false;
            shotscreen.btnSubmit.Enabled      = true;
            shotscreen.btnTakePicture.Enabled = false;
            shotscreen.Show();
        }
Beispiel #2
0
 public welcomeForm(string welcomeString, shotScreen parent)
 {
     InitializeComponent();
     bunifuFlatButton1.Text = welcomeString;
     Parent = parent;
 }