Slider
<StackPanel
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Slider_wcp.Pane1"
>
<StackPanel.Resources>
<Style x:Key="Triggers" TargetType="{x:Type Slider}">
<Style.Triggers>
<Trigger Property="Slider.IsMouseOver" Value="True">
<Setter Property = "Background" Value="Green"/>
<Setter Property = "IsSnapToTickEnabled" Value ="True"/>
<Setter Property = "TickPlacement" Value ="TopLeft"/>
<Setter Property = "TickFrequency" Value ="1"/>
<Setter Property="TickPlacement" Value="BottomRight"/>
</Trigger>
</Style.Triggers>
</Style>
</StackPanel.Resources>
<Grid ShowGridLines ="false" Background ="White" Width="408" Height="107.923" >
<TextBlock Margin="10,10,253,38" Grid.Column="0" Grid.Row="0"
FontSize="24">Slider </TextBlock>
<Slider Margin="10,0,0,3" Grid.Column="0"
Width="258" Value="0" Orientation="Horizontal" HorizontalAlignment="Left"
Style="{StaticResource Triggers}" VerticalAlignment="Bottom" Height="22" />
</Grid>
</StackPanel>
《asp.net core精要讲解》 https://ke.qq.com/course/265696
《asp.net core 3.0》 https://ke.qq.com/course/437517
《asp.net core项目实战》 https://ke.qq.com/course/291868
《基于.net core微服务》 https://ke.qq.com/course/299524