c# - Windows UWP header row above ScrollViewer -


i looking solution create row above scrollviewer stick on top of page. solutions?

it should in "movier" app: enter image description here

you can use commandbar.

here sample image. source: commandbar

enter image description here

here code sample

<commandbar verticalalignment="top">     <commandbar.content>         <textblock text="library" fontsize="36"/>     </commandbar.content>     <appbarbutton icon="favorite" label="favorite" click="appbarbutton_click"/>     <appbarbutton icon="zoom" label="search" click="appbarbutton_click"/>     <appbarbutton icon="setting" label="setting" click="appbarbutton_click"/> </commandbar> 

you can learn more in commandbar class.


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -