UWP TabView滚动按钮

时间:2019-10-20 03:38:39

标签: uwp win-universal-app

TabView

我发现TabView的选项卡在发生溢出时可以滚动。而且,我可以使用在上面发布的图像中划出的按钮来滚动它们。

但是,我找不到修改方法。我只想将其BorderThickness设置为0。有人可以在我的TabView的{​​{3}}中指出它们吗?

1 个答案:

答案 0 :(得分:1)

PlaylistTabView.xaml中的RepeatButton表示您圈出的Button的样式,因此可以在其中将BorderThickness设置为0。请注意,您的xaml中有两个RepeatButtons,因此您需要同时设置它们。

PlaylistTabView.xaml:

<RepeatButton
                 x:Name="ScrollBackButton"
                 VerticalAlignment="Stretch"
                 Background="Transparent"
                 BorderThickness="0"
                 Delay="50"
                 FontFamily="Segoe MDL2 Assets"
                Interval="100"
                Style="{StaticResource RepeatButtonRevealStyle}"
                Visibility="{Binding ScrollableWidth, Converter={StaticResource GreaterThanToleranceVisibilityConverter}, RelativeSource={RelativeSource TemplatedParent}, FallbackValue=Collapsed, TargetNullValue=Collapsed}">
                                &#xE76B;
</RepeatButton>