UWP TabView 滚动按钮
UWP TabView scroll button
我发现 TabView
的选项卡在溢出时可以滚动。我可以使用我在上面发布的图片中圈出的按钮滚动它们。
但是,我不知道如何修改它们。我只想将它们的 BorderThickness
设置为 0。有人可以在我的 TabView
的 source style 中指出它们吗?
你的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}">

</RepeatButton>
我发现 TabView
的选项卡在溢出时可以滚动。我可以使用我在上面发布的图片中圈出的按钮滚动它们。
但是,我不知道如何修改它们。我只想将它们的 BorderThickness
设置为 0。有人可以在我的 TabView
的 source style 中指出它们吗?
你的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}">

</RepeatButton>