Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to increase the spaces between the items of `GridView` in Windows 8

How to increase the space between the items of a GridView in Windows 8?

like image 347
Prem Prakash Avatar asked Sep 11 '12 12:09

Prem Prakash


1 Answers

<GridView.ItemContainerStyle>
   <Style TargetType="FrameworkElement">
      <Setter Property="Margin" Value="0 0 20 20"/>
   </Style>
</GridView.ItemContainerStyle>
like image 114
maxim pg Avatar answered Oct 02 '22 13:10

maxim pg