2
votes

I'm trying to change the default color for gridview border selected item in winrt application. I try to find it in blend (item container template), but still no luck. Does anyone here know how to do it? Thanks.

2

2 Answers

1
votes

I found my answer here http://labs.vectorform.com/2012/09/styling-a-gridviewitem-in-winrt/ Just change the color in the code, and you're set :)

-1
votes

See if this works... :)

     <GridView>
        <GridView.BorderBrush>
            <SolidColorBrush Color="Red" />
        </GridView.BorderBrush>
    </GridView>