Ejemplo n.º 1
0
        public void AddChat(IClient client, PeerCommunicator pc)
        {
            ChatTabPage t = new ChatTabPage(client, pc, this);

            ChatTabsControl.TabPages.Add(t);
        }
Ejemplo n.º 2
0
        public void AddGroupChat(string hash)
        {
            ChatTabPage t = new ChatTabPage(hash, this);

            ChatTabsControl.TabPages.Add(t);
        }
Ejemplo n.º 3
0
 public void RemoveTab(ChatTabPage tab)
 {
     ChatTabsControl.TabPages.Remove(tab);
 }