Exemplo n.º 1
0
        private void button2_Click(object sender, EventArgs e)
        {
            this.Hide();
            ChatUsers friends = new ChatUsers(Profile.active, Profile.users);

            friends.Show();
        }
Exemplo n.º 2
0
        private void btnFriends_Click(object sender, EventArgs e)
        {
            this.Hide();
            ChatUsers friends = new ChatUsers(active, users);

            friends.Show();
        }
Exemplo n.º 3
0
 public void RemoveChatUser(string index)
 {
     ChatUsers.Remove(index.ToUpper());
 }
Exemplo n.º 4
0
 public void AddChatUser(string index, ChatUser user)
 {
     ChatUsers.Add(index.ToUpper(), user);
 }