New to Telerik UI for WinUIStart a free 30-day trial

Getting Started with WinUI HubTile

Updated on Mar 26, 2026

This tutorial will walk you through the creation of a RadHubTile.

Assembly References

In order to use the RadHubTile elements in your projects, you have to add references to the following assembly:

  • Telerik.WinUI.Controls.dll
  • Telerik.Licensing.Runtime.dll

Defining the RadHubTile

Example 1 demonstrates how a RadHubTile can be defined.

Example 1: Defining a RadHubTile

XAML
<Grid xmlns:telerik="using:Telerik.UI.Xaml.Controls.Primitives">
	<telerik:RadHubTile Title="Title" Message="Message" BackContent="Back content" 
						   Notification="Notification" UpdateInterval="0:0:2" ImageSource="ms-appx:///Images/MyPicture1.png">
	</telerik:RadHubTile>
</Grid>

Example 1 assumes that there is a "MyPicture1.png" image inside an Images folder in the project.

Figure 1: RadHubTile

WinUI RadHubTile

Different Types of Tiles

There are several different types of tiles, which can be used for different scenarios. Check them all out in the [HubTiles](%slug radhubtile-properties%) section.

HubTileService

The HubTileService allows you to group multiple tiles and freeze/unfreeze them. Learn more in the [HubTileService](%slug radhubtile-hubtileservice%) article.

Telerik UI for WinUI Learning Resources

See Also