Example #1
0
        public void GotMessage(jabber.protocol.client.Message msg)
        {
            foreign_jid  = msg.From;
            message_type = msg.Type;
            thread_id    = msg.Thread;

            if (msg.Body.Trim().Length > 0)
            {
                RichTextBox1.SelectionColor = Color.Red;
                RichTextBox1.AppendText(string.Format("({0}) {1}: ", DateTime.Now.ToString("hh:mm:ss"), Text));
                RichTextBox1.SelectionColor = Color.Black;
                RichTextBox1.AppendText(string.Format("{0}\n", msg.Body));

                XmppSounds.PlaySound(DefaultSounds.MessageIn);
            }
        }
        public void GotMessage(jabber.protocol.client.Message msg)
        {
            foreign_jid = msg.From;
            message_type = msg.Type;
            thread_id = msg.Thread;

            if (msg.Body.Trim ().Length > 0) {
                RichTextBox1.SelectionColor = Color.Red;
                RichTextBox1.AppendText (string.Format ("({0}) {1}: ", DateTime.Now.ToString ("hh:mm:ss"), Text));
                RichTextBox1.SelectionColor = Color.Black;
                RichTextBox1.AppendText (string.Format ("{0}\n", msg.Body));

                XmppSounds.PlaySound (DefaultSounds.MessageIn);
            }
        }