Example #1
0
 public void AddToChatWindow(String FromUsername, String Message)
 {
     if (AllGUIs.GetGUI(FromUsername) != null)
     {
         ChatWindow Chat = AllGUIs.GetGUI(FromUsername);
         Chat.ChangeChatWindow(Message);
     }
 }
Example #2
0
        public void AddingChatlogs(List <String> ChatLogs, String Username)
        {
            ChatWindow Chat = AllGUIs.GetGUI(Username);

            foreach (String log in ChatLogs)
            {
                Chat.ChangeChatWindow(log);
            }
        }