New to Telerik UI for WinUI? Start a free 30-day trial
Gif Message
Updated on Mar 26, 2026
The GifMessage is intended to be used for displaying gif elements. It exposes the following properties:
Author—The author of the message.Source—Property of the type ofUri, which is used to display entries in the list message.CreationDate—This property holds a DateTime object of the message's creation date.
Defining a GifMessage
C#
GifMessage gifMessage = new GifMessage(this.currentAuthor, new Uri("ms-appx:///MyGif.gif", UriKind.Absolute));
this.chat.AddMessage(gifMessage);
RadChat with a GifMessage
