Exemple #1
0
        public override void AddChat(ChatModel chat)
        {
            ChatView chatView = (ChatView) CreateChatView(chat);
            chatView.MainWindow = _MainWindow;
            _ChatViews.Add(chat, chatView);

            _ActiveChat = chatView;
        }
Exemple #2
0
 public ChatSwitchedEventArgs(ChatView chatView)
 {
     ChatView = chatView;
 }
Exemple #3
0
 public ChatSwitchedEventArgs(ChatView chatView)
 {
     ChatView = chatView;
 }
Exemple #4
0
        public override void DisableChat(ChatModel chat)
        {
            ChatView chatView = f_ChatViews[chat];

            chatView.Disable();
        }