New to Telerik UI for WinUI? Start a free 30-day trial
Card Message
Updated on Mar 26, 2026
The most basic card is the CardMessage. It can display data in a structured manner through the following properties:
Title—Gets or sets the title for the CardMessage instance. It is of the type ofstring.SubTitle—Gets or sets the subtitle for the CardMessage instance. It is of the type ofstring.Text—Gets or sets the text for the CardMessage instance. It is of the type ofstring.
Each card needs to have an
Authorthat is passed through its constructor.
Defining a CardMessage
C#
CardMessage cardMessage = new CardMessage(this.currentAuthor);
cardMessage.ActionResultsOrientation = Orientation.Vertical;
cardMessage.Title = "Stenly Grigorov";
cardMessage.SubTitle = "Senior Front-end Developer ";
cardMessage.Text = "Stenly has an experience of 5 years as a front-end developer.";
chat.AddMessage(cardMessage);
RadChat with a CardMessage
