如何在Windows Phone 8中为白色边框添加黑色椭圆

时间:2013-08-09 07:46:32

标签: windows-phone-7 xaml silverlight-4.0 windows-phone-8

enter image description here

我在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>

任何人都可以帮我设计我的要求。

1 个答案:

答案 0 :(得分:15)

您可以在Stroke元素上设置彩色Ellipse,使其在黑色背景上突出显示。

示例:

 <Ellipse Height="52" Width="52" Fill="{Binding SelectedColor}" Stroke="White" StrokeThickness="1"/>