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 want to create two grids in the WPF Page. One Grid need scrollbar or scroll viewer. Another Grid is static.The grids are placed one by one in the page. How can I create and set the scroll in first Grid?

share|improve this question
It sounds like maybe you are trying to scroll both with one synchronized scrollbar? It's difficult to tell what you are asking. If you want one scrollbar for both grids, I would suggest using one overall scroll viewer for both and then just style them to look like two different grids. – Josh G Mar 11 '11 at 15:38

2 Answers

<ScrollViewer>  
    <StackPanel>  
        ...   
    </StackPanel>  
</ScrollViewer>  
share|improve this answer
works like a charm – Yuriy Vikulov Jan 28 at 3:24

Sounds like this user justs wants the first grid to scroll, such as:

<StackPanel>
    <ScrollViewer>
        <Grid>
        </Grid>
    </ScrollViewer>
    <Grid>
    </Grid>
</StackPanel>
share|improve this answer

Your Answer

 
discard

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