예제 #1
0
        public ServerForm()
        {
            InitializeComponent();
            thisWindow = this;

            onOpen();
            textBox1.Focus();
        }
예제 #2
0
파일: Form1.cs 프로젝트: Conanza121/ConChat
 private void button1_Click(object sender, EventArgs e)
 {
     ServerForm s = new ServerForm();
     s.Show();
     this.Hide();
 }