Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / desktop / XAML

Different Sized Tile Items in WinRT GridView

3.43/5 (5 votes)
26 Mar 2013CPOL 21.4K  
The article explains how to add variable sized tile items into WinRT GridView.

Introduction

GridView in WinRT allows you to arrange tile items in wrap manner. In case you want to arrange items as in Windows store app, we need different sized tile items. There is no direct way to configure different sized items while using data binding in GridView. I am going to explain the solution in this article.

Background

VariableSizedWrapGrid should be the panel for GridView. This panel has two attached properties ColumnSpan and RowSpan. To set this property to the containers, we have to inherit the GridView class and override the PrepareContainerForItemOverride.  

C#
public class VariableGrid : GridView
{
   protected override void PrepareContainerForItemOverride
   	(Windows.UI.Xaml.DependencyObject element, object item)
   {

       var tile = item as Model;
       if (tile != null)
       {
          var griditem = element as GridViewItem;
          if (griditem != null)
          {
              VariableSizedWrapGrid.SetColumnSpan(griditem, tile.ColumnSpan);
              VariableSizedWrapGrid.SetRowSpan(griditem, tile.RowSpan);
          }
  }
  base.PrepareContainerForItemOverride(element, item);
}

I have the Model class as below. It contains the ColumnSpan and RowSpan property.

C#
public class Model
{
    public int ColumnSpan { get; set; }

    public int RowSpan { get; set; }

    public string Header { get; set; }

} 
XML
<local:VariableGrid ItemsSource="{Binding Models}"
                    Padding="0" Margin="100" Height="630">
   <local:VariableGrid.ItemTemplate>
       <DataTemplate>
           <Grid Background="MediumOrchid">
               <TextBlock Text="{Binding Header}" Margin="10" 
                          HorizontalAlignment="Left"
                          VerticalAlignment="Bottom"/>
            </Grid>
         </DataTemplate>
   </local:VariableGrid.ItemTemplate>
   <local:VariableGrid.ItemsPanel>
       <ItemsPanelTemplate>
          <VariableSizedWrapGrid ItemHeight="200" ItemWidth="200"/>
       </ItemsPanelTemplate>
   </local:VariableGrid.ItemsPanel>
</local:VariableGrid>

Our VariableGrid class will map the span properties from model to containers and you can see the following output:

Image 1

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)