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?
No custom style, just the default. I define it like this:
<esri:TimeSlider x:Name="TimeSlider" Grid.Column="1" Height="20" Width="400" ValueChanged="TimeSlider_ValueChanged" />
Here is the whole control it is within (I have tried taking it out of this control though and putting it right in the main application grid, and still have the issue):
<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>
Another thing that is really odd, if I don't specify the height and width, it drags my application to a hault almost... like its in an endless loop of processing something. I don't see the relation between that behavior and the size of the control though.Thanks for the quick reply Jennifer!