Unplanned
Last Updated: 22 Sep 2020 12:01 by ADMIN
Hans
Created on: 21 Sep 2020 13:55
Category: Chat
Type: Feature Request
2
Is it possible to use emojis in the WPF chat control?

Hello!

I wounder how you support the use of emojis in the WPF Chat component. Or is it supported?

Best regards

Hans

1 comment
ADMIN
Dilyan Traykov
Posted on: 22 Sep 2020 12:01

Hello Hans,

Emojis are not currently supported by the RadChat control, but I have logged this feature request in our backlog so that if it accumulates enough votes, we will consider their implementation.

For the time being, you can use ImageMessages instead as follows, if this works for you:

		private void AddImageMessage()
		{
			var image = new ImageMessage(this.author, new BitmapImage(new Uri("/Images/emoji.png", UriKind.Relative)));
			image.Stretch = Stretch.UniformToFill;
			image.Size = new Size(32, 32);

			this.chat.AddMessage(image);
		}

Regards,
Dilyan Traykov
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.