Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm developing metro app using C# and XAML, I'm stuck with grid view that my grid view consist of multiple grids by default grid view assigns equal width to all grids,But i wanna give different width for each grid.example code is below

<GridView x:Name="ObjGridView">
            <Grid Background="Black" Height="400" Width="464">

            </Grid>
            <Grid Background="Blue" Height="400" Width="464">

            </Grid>
            <Grid Background="Blue" Height="400" Width="464">

            </Grid>
         <!--Up to n Grids-->
</GridView> 

So,Is there any way to give width for grids manually or can change the column width of grid view. Please help me. Thanks in advance.

share|improve this question

1 Answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.