我希望页面顶部有三个按钮,如果页面滚动,它会保持可见状态, (我已经尝试通过滚动查看器从按钮中分离其他内容,但我不希望在我的内容中有滚动查看器。)任何人都知道如何使用粘性面板或如何使按钮固定在页面顶部而不管页面滚动??
我在下面尝试过,但我不想在我的代码中使用滚动查看器。
<Grid x:Name="LayoutRoot" >
<Grid.RowDefinitions>
<RowDefinition Height="20"/>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0">
//My Buttons
</StackPanel>
<ScrollViewer Grid.Row="1">
//My Content
</ScrollViewer>
答案 0 :(得分:0)
是的,您可以通过将属性VerticalScrollBarVisibility设置为Hidden来轻松获得此效果。
滚动条不会出现在页面上,但您可以向下滚动页面。
<ScrollViewer VerticalScrollBarVisibility="Hidden">
//your content goes here
</ScrollViewer>