我在我的 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>
任何人请帮我设计我的要求。