---
title: "WPF toolkit for tile listview"  
description: "WPF toolkit for tile listview"  
author: "Anonymous User"  
published: 2013-09-21  
updated: 2013-09-21  
canonical: https://www.mindstick.com/forum/1462/wpf-toolkit-for-tile-listview  
category: "wpf"  
tags: ["wpf"]  
reading_time: 1 minute  

---

# WPF toolkit for tile listview

I need to create tiles of well formatted buttons, something like the [Windows](https://www.mindstick.com/articles/311752/how-to-install-and-use-the-google-wifi-software-on-a-windows-or-mac-computer) 8 start page. Is there any [toolkit](https://www.mindstick.com/blog/296655/effective-strategies-for-salesforce-migration-and-force-com-migration-toolkit) available for a [custom](https://www.mindstick.com/blog/12298/use-custom-writing-services-to-get-through-the-finals) [ListView](https://www.mindstick.com/articles/12744/listview-in-android) which may [support](https://yourviews.mindstick.com/view/286/modi-support-for-sportsperson) tile view or [grid view](https://www.mindstick.com/forum/477/grid-view), with some formatting and may be some [animation](https://www.mindstick.com/articles/13040/seven-helpful-tips-to-start-and-grow-an-animation-video-company) options.

I tried creating my own custom listview but it seemed to be a complicated task.

## Replies

### Reply by Sumit Kesarwani

Hi Goti,\

You can simply use Item Control, i). In Item Panel just give the number of rows and columns you want ii). If button you want here are to be generated dynamically just assign the list of Buttons to it.

```
<ItemsControl x:Name="lstButtons"        
Grid.Row="0"             
Grid.Column="1"> 
<ItemsControl.ItemsPanel>   
<ItemsPanelTemplate>      <UniformGrid Columns="4"                  
Rows="4" />   
</ItemsPanelTemplate> 
</ItemsControl.ItemsPanel> 
<ItemsControl.ItemTemplate>   
<DataTemplate>      <Button  Click="CLICK_EVENT_HERE"              
Style="Use metro Button Style here" />   
</DataTemplate> 
</ItemsControl.ItemTemplate></ItemsControl>
```


---

Original Source: https://www.mindstick.com/forum/1462/wpf-toolkit-for-tile-listview

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
