Reputation: 1802
I mean this gray square at the corner of 'Warlords':
Also i'd like to set one pixel border around it.
Thanks!
Upvotes: 0
Views: 479
Reputation: 3221
Please refer GridViewItem style
In that look for MultiSelectSquare
Border
control.
Below i have given background color of checkbox to Red
<Border x:Name="MultiSelectSquare"
Background="Red" BorderThickness="2" BorderBrush="Black"
Width="20"
Height="20"
Margin="0,2,2,0"
VerticalAlignment="Top"
HorizontalAlignment="Right"
Visibility="Collapsed" >
Upvotes: 1