I cannot replicate this with the DefaultStyle of the TimeSlider. Did you by any chance applied a custom style? Can you also share your XAML-code on how you define the TimeSlider?
<esri:TimeSlider x:Name="TimeSlider" Grid.Column="1" Height="20" Width="400" ValueChanged="TimeSlider_ValueChanged" />
<local:DialogWindow x:Class="SDL.ArcGIS.Client.Toolkit.TimeSliderWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:esri="http://schemas.esri.com/arcgis/client/2009" xmlns:local="clr-namespace:SDL.ArcGIS.Client.Toolkit" Resizable="False"> <StackPanel Orientation="Vertical" Margin="10"> <Grid Margin="10"> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <Grid x:Name="MapsGrid"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> <TextBlock Text="Set Time On:" VerticalAlignment="Center" Foreground="Black" /> <ComboBox x:Name="MapsComboBox" Grid.Column="1" Text="Maps" ItemsSource="{Binding Maps}" Margin="10,0,0,0" /> </Grid> <Grid x:Name="TimeSliderGrid" Grid.Row="1" Margin="0,10,0,0"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="Auto" /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <TextBlock Text="Time: " VerticalAlignment="Center" Foreground="Black" /> <esri:TimeSlider x:Name="TimeSlider" Grid.Column="1" Height="20" Width="400" ValueChanged="TimeSlider_ValueChanged" /> <TextBlock Grid.ColumnSpan="2" Grid.Row="1" x:Name="CurrentTimeTextBlock" Foreground="Black" HorizontalAlignment="Center" /> </Grid> </Grid> </StackPanel> </local:DialogWindow>
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.