Nit*_*aul 10 xaml silverlight-4.0 windows-phone-7 windows-phone-8

我在我的Windows Phone 8应用程序中使用上面给出的弹出窗口.我的问题是黑色列表项目,无法区分项目与其他项目.所以我的问题是如何将圆形白色边框放到这个特定的黑名单项目中.
这是我在我的应用程序中使用的模板.
<DataTemplate x:Key="ColorListTemplate">
<Grid Height="70" Margin="0,0,0,5" toolkit:TiltEffect.IsTiltEnabled="True">
<StackPanel Orientation="Horizontal">
<Ellipse Height="52" Width="52" Fill="{Binding SelectedColor}"/>
<TextBlock Text="{Binding ColorName}" Margin="32,0" FontSize="34" Style="{StaticResource NormalText}"/>
<CheckBox IsChecked="{Binding CheckedStatus}" Style="{StaticResource CheckBoxStyle}" IsHitTestVisible="False"/>
</StackPanel>
</Grid>
</DataTemplate>
Run Code Online (Sandbox Code Playgroud)
有人请帮我设计我的要求.
sa_*_*213 15
您可以Stroke在Ellipse元素上设置彩色,使其在黑色背景上突出显示.
例:
<Ellipse Height="52" Width="52" Fill="{Binding SelectedColor}" Stroke="White" StrokeThickness="1"/>
Run Code Online (Sandbox Code Playgroud)