简体   繁体   中英

WP7 App scroll bar on page

I have Page in my WP7 Application, this page has some text and some input controls like lists and text boxes, some times when text is more, controls at the bottom of the page disappears. Is there any way to show scroll bar on the page so that user can see the whole page?

Yes, a ScrollViewer control can be used to scroll content that is longer than the visible area available to the control...

<ScrollViewer>
 ... content goes here ...
</ScrollViewer>

Simply wrap the container element that contains all these elements in a ScrollViewer .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM