示例#1
0
 private void OpenChatWindow()
 {
     if (ChosenContact != null)
     {
         Window chatWindow = ChatWindowFactory.GetChatWindow(chosenContact.UserName, string.Empty);
         chatWindow.Show();
     }
 }
示例#2
0
        private void ChatServiceProxy_OnMessageSent(object sender, OnMessageSentEventArgs e)
        {
            Window chatWindow = ChatWindowFactory.GetChatWindow(e.UserName, e.Message);

            chatWindow.Show();
        }