Click here to Skip to main content
15,884,177 members
Articles / Desktop Programming / XAML
Tip/Trick

Different Sized Tile Items in WinRT GridView

Rate me:
Please Sign up or sign in to vote.
3.43/5 (5 votes)
26 Mar 2013CPOL 20.9K   2   2
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)


Written By
Software Developer (Senior)
India India
Jawahar working as a Senior Development Engineer in Aditi Technologies,Bangalore, India. Specialist in all XAML frameworks. Very passionate on UX Design and Development. Skilled in Expression Blend, Design, WPF, Silverlight, Windows Phone 7/8, Windows 8. Good knowledge in Entity Framework, SQLite and SQL Server also. Also had good experience with PRISM, MVVM, Caliiburn Micro and other design patterns.

He developed few products for Syncfusion Inc. Also working on some freelancing projects. Worked as a lead developer of Metro Studio from Syncfusion Inc.

An active freelancer. http://xamlfactory.elance.com

http://about.me/jawahars

http://wpfplayground.com/

Comments and Discussions

 
QuestionMy vote of 5 Pin
Thierry Maurel2-Feb-14 7:54
Thierry Maurel2-Feb-14 7:54 
Simple and easy, bravo !
GeneralMy vote of 1 Pin
Singh Vijay Kumar27-Mar-13 22:02
professionalSingh Vijay Kumar27-Mar-13 22:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.