c# - Windows UWP header row above ScrollViewer -
i looking solution create row above scrollviewer stick on top of page. solutions?
you can use commandbar.
here sample image. source: commandbar
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
Post a Comment