我已經爲我的應用程序創建了自定義滑塊和縮略圖模板。除了PART_SelectionRange Rectangle之外,它的工作方式與預期相同,稍微在拇指後面開始,到達最大值時明顯遠遠落後於它。WPF自定義滑塊PART_SelectionRange滯後於拇指
我不知道如何解決這個問題,因爲看起來問題出在控制PART_SelectionRange Rectangle大小的任何類的行爲上。 (對不起,我不知道如何內聯)。
<ControlTemplate x:Key="SliderThumbHorizontalDefault" TargetType="{x:Type Thumb}">
<Grid>
<!-- SliderThumb -->
<Path x:Name="grip" Data="M-0.4,6.4 C1.2,1 9,1 10.5,6.5 12,11.787571 5.0267407,18.175417 5.0267407,18.175417 5.0267407,18.175417 -2,11.8 -0.4,6.4 z"
Fill="White" Stretch="Fill" SnapsToDevicePixels="True"
Stroke="Black" StrokeThickness="1" UseLayoutRounding="True" />
<ContentPresenter Margin="0 4 0 0" Content="{Binding Value, RelativeSource={RelativeSource AncestorType={x:Type Slider}}}" TextBlock.Foreground="Black" TextBlock.FontSize="20" TextBlock.TextAlignment="Center" />
</Grid>
</ControlTemplate>
<ControlTemplate x:Key="SliderHorizontal" TargetType="{x:Type Slider}">
<ControlTemplate.Resources>
<vc:TickConverter x:Key="TickConverter" />
</ControlTemplate.Resources>
<Grid Height="{StaticResource SliderHeight}">
<Border x:Name="TrackBackground" BorderBrush="{StaticResource SliderThumb.Track.Border}" BorderThickness="0"
Background="White"
CornerRadius="{Binding ActualHeight, Converter={StaticResource HalvingConverter}, ElementName=TrackBackground}">
<!-- This rectangle is what lags behind! -->
<Rectangle x:Name="PART_SelectionRange" Fill="SlateBlue"
HorizontalAlignment="Left" RadiusY="3" RadiusX="3" />
</Border>
<Track x:Name="PART_Track" >
<Track.Thumb>
<Thumb x:Name="Thumb" Focusable="False" Width="35" Height="47" OverridesDefaultStyle="True"
Template="{StaticResource SliderThumbHorizontalDefault}" Margin="-14.65,-55,-16,12"/>
</Track.Thumb>
</Track>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsSelectionRangeEnabled" Value="true">
<Setter Property="Visibility" TargetName="PART_SelectionRange" Value="Visible" />
</Trigger>
<Trigger Property="IsKeyboardFocused" Value="true">
<Setter Property="Foreground" TargetName="Thumb" Value="Blue" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
<Style TargetType="{x:Type Slider}">
<Setter Property="MinHeight" Value="{StaticResource SliderHeight}" />
<Setter Property="MaxHeight" Value="{StaticResource SliderHeight}" />
<Setter Property="Stylus.IsPressAndHoldEnabled" Value="false" />
<Setter Property="IsSelectionRangeEnabled" Value="True" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderBrush" Value="Transparent" />
<Setter Property="Foreground" Value="{StaticResource SliderThumb.Static.Foreground}" />
<Setter Property="SelectionStart" Value="{Binding Minimum, RelativeSource={RelativeSource Self}}" />
<Setter Property="SelectionEnd" Value="{Binding Value, RelativeSource={RelativeSource Self}}" />
<Setter Property="Template" Value="{StaticResource SliderHorizontal}" />
</Style>
在這一點上,我不知道我應該試圖修改。我相信我已經嘗試過改變xaml中所有有意義的屬性,所以我認爲問題出現在Slider類中,但無法理解它在哪裏。