Exemplo n.º 1
0
        private void loginBtn_Click(object sender, EventArgs e)
        {
            var form2 = new ChatForms();

            client.Send(loginBox.Text, passwordBox.Text);
            form2.Show();
            this.Visible = false;
        }
Exemplo n.º 2
0
 public Client(ChatForms chatForms)
 {
     this.chatForms = chatForms;
 }