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 building a Windows Store App that uses a GridView to show a list of items (basic, out of the box template). I would like to know if I can get the total width that all the items take up.

Right now I'm taking the number of item columns and multiplying it by the total width of one of the items. This is working, but it requires that my code behind knows way too much about my view. I'd like to find the one property that has the width and just bind to it.

Thanks for any help!

Here is the code that I have to get the column width of the GridView

(itemGridView.ItemContainerGenerator.ContainerFromIndex(0) as GridViewItem).ActualWidth

I don't have a good way to get the number of Columns, so that would also be helpful

share|improve this question
Show what you have done in order to get the right solution. – FSX Oct 21 '12 at 6:37

1 Answer

up vote 0 down vote accepted

The ActualWidth property of the GridView should contain the information you are looking for.

If not, you could try to call Measure on the gridview to let it perform the required layout calculus and output its desired Size.

share|improve this answer
Thanks for the reply. ActualWidth just gives me the length of the container, not the internal length. I'll try Measure when I get a second. – joe_coolish Oct 21 '12 at 21:15
Ah, I didn't understand that you want only the summed size of the items in the container. I don't think you can get that without knowing détails about the GridView Template. (summed margins and paddings) Measure will give you the same piece of information) – Eilistraee Oct 21 '12 at 21:27
I updated the question with the code I use to get the width of one item. From there I just need to figure out how many columns exist. any ideas on that? – joe_coolish Oct 21 '12 at 21:32
I figured it out.... it was that Virtual Width thing that was throwing off my groove... Set that to false and we were in business! – joe_coolish Nov 8 '12 at 15:01

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.