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.

My requirement is to have a grid that moves along with a grid view when I scroll through a grid view. I used WinRT XAML Toolkit to get the Gridview descendants http://winrtxamltoolkit.codeplex.com/ - VisualTreeHelperExtensions.

This is the code I have to get the scrollbar within the GridView.

    var scrollViewer = itemGridView.GetFirstDescendantOfType<ScrollViewer>();
    var scrollbars = scrollViewer.GetDescendantsOfType<ScrollBar>().ToList();
    var horizontalBar = scrollbars.FirstOrDefault(x => x.Orientation == Orientation.Horizontal);
    horizontalBar.Scroll += horizontalBar_Scroll

My problem is - the scrollViewer is always null. Setting breakpoints I see, the count of ScrollViewers inside the GridView is 0.

How do I get a reference to the scrollbar inside the gridview? Or is there another way to move the grid element whenever the gridview is scrolled?

share|improve this question

1 Answer

I found the reason to this behavior. I was performing this query in the Page constructor. I now have it when the itemGridView is completely Loaded.

   itemGridView.Loaded += itemGridView_Loaded;


Quote from MSDN:

Loaded:
Occurs when a FrameworkElement has been constructed and added to the object tree, and is ready for interaction. (Inherited from FrameworkElement)

Thanks

share|improve this 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.