New to Telerik UI for .NET MAUI? Start a free 30-day trial
.NET MAUI Chat Events
Updated on Nov 11, 2025
The Telerik UI for .NET MAUI Chat allows you to attach events that will be raised when certain actions occur.
Here is a list of the available events:
-
SendMessage—Raised when a message is sent from the chat by the current author (by clicking the send message button or pressing Enter). -
AttachFiles—Raised when the end user picks files to attach.- The
senderargument, which is of typeobject, but can be cast to theRadChattype. - A
ChatAttachFilesEventArgsobject which provides the list of files (IList<IFileInfo> FilesToAttach) to attach to the chat message.
- The
-
RemoveAttachedFile—Raised when the end user removes an attached file, via theXbutton of theChatInputAreaAttachedFileItemView.- The
senderargument, which is of typeobject, but can be cast to theRadChattype. -
- A
ChatRemoveAttachedFileEventArgsobject which provides the index (Indexof typeint) of the item that should be removed from theTelerik.Maui.Controls.RadChat.AttachedFilesSourceandTelerik.Maui.Controls.RadChat.AttachedFiles.
- A
- The