To complete #10615 (http://silverlight.codeplex.com/workitem/10615), in light theme the thumb center is White instead of Black.
In changeset #75339 - Generic.xaml - ToggleSwitchButton
I changed :
<Border x:Name="ThumbCenter"
BorderBrush="{StaticResource PhoneForegroundBrush}"
BorderThickness="2"
Background="White"/>
to :
<Border x:Name="ThumbCenter"
BorderBrush="{StaticResource PhoneForegroundBrush}"
BorderThickness="2"
Background="{StaticResource PhoneForegroundBrush}"/>
Hope it will help
J.
Comments: ** Comment from web user: shawnoster **
In changeset #75339 - Generic.xaml - ToggleSwitchButton
I changed :
<Border x:Name="ThumbCenter"
BorderBrush="{StaticResource PhoneForegroundBrush}"
BorderThickness="2"
Background="White"/>
to :
<Border x:Name="ThumbCenter"
BorderBrush="{StaticResource PhoneForegroundBrush}"
BorderThickness="2"
Background="{StaticResource PhoneForegroundBrush}"/>
Hope it will help
J.
Comments: ** Comment from web user: shawnoster **
Great catch!