Unplanned
Last Updated: 28 Apr 2023 09:05 by ADMIN

Use this code:

        public RadForm1()
        {
            InitializeComponent(); 
            System.Threading.Thread.CurrentThread.CurrentCulture = culture;
            System.Threading.Thread.CurrentThread.CurrentUICulture = culture;

            this.radChat1.Author = new Author(Properties.Resources.bot, "Nancy");

            Author author2 = new Author(Properties.Resources.bot, "Andrew");
            ChatTextMessage message1 = new ChatTextMessage("Hello", author2, DateTime.Now.AddHours(1));
            this.radChat1.AddMessage(message1);
            ChatTextMessage message2 = new ChatTextMessage("Hi", this.radChat1.Author, DateTime.Now.AddHours(1).AddMinutes(10));
            this.radChat1.AddMessage(message2);
            ChatTextMessage message3 = new ChatTextMessage("We would like to announce that in the R2 2018 release " +
                                                           "we introduced Conversational UI", author2, DateTime.Now.AddHours(3));
            this.radChat1.AddMessage(message3);
            ChatTextMessage message4 = new ChatTextMessage("This control provides rich conversational experience " +
                                                           "that goes beyond the natural language understanding and " +
                                                           "personality of your chatbot.", author2, DateTime.Now.AddHours(3));
            this.radChat1.AddMessage(message4);

            calendarOverlay = new ChatCalendarOverlay("Select a date");
            Author author = new Author(Properties.Resources.bot, "Andrew");
            ChatOverlayMessage overlayMessage = new ChatOverlayMessage(calendarOverlay, author, DateTime.Now);        
            this.radChat1.AddMessage(overlayMessage);
        }

You will notice that the footer doesn't show the date formatted in Spanish:

Unplanned
Last Updated: 15 May 2020 09:13 by ADMIN
I'd like to know if it's possible to add Auto-Complete functionality to the Chat UI in WinForms.  I want to be able to tag a user in the chat message.  When I type the '@' symbol I want the auto-complete to start with a prepopulated list of users.
Unplanned
Last Updated: 17 Dec 2019 14:54 by ADMIN
Please refer to the attached screenshot for a better illustration.
Unplanned
Last Updated: 13 Dec 2019 13:16 by ADMIN

Currently, when you paste a text inside the input box of RadChat, the text is inserted in the text box as preview and you can either commit the message by pressing Enter or delete the text completely. However, if you have an image object in the clipboard and paste it to the input box, a ChatMediaMessage is directly inserted in RadChat without any preview. 

This is a feature request for illustrating a preview image above the input box like most popular chat applications like Skype.