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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -