Telerik RadControls for Windows Phone – Article #8 – RadHubTile

The RadHubTile control which is a part of the Telerik RadControls for Windows Phone suite brings the Windows Phone home screen experience to your App .

The hub tile or live tiles provides the tile behaviors like animations, update of data on tiles etc.

To add the RadHubTile to your Windows Phone Page, you can add the following XAML code to your Windows Phone page.

<telerikPrimitives:RadHubTile Height="211" HorizontalAlignment="Left" Margin="12,26,0,0" Name="radHubTile1" VerticalAlignment="Top" Width="204" />

If you want to add the RadHubTile via code behind , you can create an instance of RadHubTile like the code below

RadHubTile tile1 = new RadHubTile();

this.ContentPanel.Children.Add(tile1);

You should also add the following namespace in your code behind file

using Telerik.Windows.Controls;

RadHubTile consists of some important components like

  • Title
  • ImageSource
  • Count
  • Message

You can set these properties from XAML or code behind

tile1.Title = "Hubtile sample";

tile1.Count = 25;

tile1.Message = "@isenthil";

The RadHubTile also has properties like Back Content, Visual Updates and lots of other features which i will explain in the coming posts

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you’ll learn about the Win32 Error “0x000019E5 – ERROR_COULD_NOT_RESIZE_LOG” that you get when debugging system erors in...
In this post, you’ll learn about the error “CO_E_DBERROR 0x8004E02B” that is returned when working with COM based APIs or...
In this post, you’ll learn about the Win32 Error “0x000019D0 – ERROR_LOG_BLOCK_VERSION” that you get when debugging system erors in...