Example #1
0
        public ClientForm()
        {
            InitializeComponent();
            thisWindow = this;

            OnOpen();
            textBox1.Focus();
        }
Example #2
0
 private void button2_Click(object sender, EventArgs e)
 {
     ClientForm cl = new ClientForm();
     cl.Show();
     this.Hide();
 }