Windows phone 8.1 在LongListSelector中设置网格单元的角半径和边框

Windows phone 8.1 在LongListSelector中设置网格单元的角半径和边框,windows-phone-8.1,longlistselector,Windows Phone 8.1,Longlistselector,我的应用程序将磁贴(按钮)加载到每个longlistselector中。所以没有单独的按钮被编码。我试图添加一个边界和角半径,但效果并不理想。边界中添加了曲线,但实际的平铺不是曲线。是否有一种方法可以使实际瓷砖的角变圆并正确添加边框 <DataTemplate x:Key="SoundTileDataTemplate"> <StackPanel> <Grid Background="{StaticResour

我的应用程序将磁贴(按钮)加载到每个longlistselector中。所以没有单独的按钮被编码。我试图添加一个边界和角半径,但效果并不理想。边界中添加了曲线,但实际的平铺不是曲线。是否有一种方法可以使实际瓷砖的角变圆并正确添加边框

<DataTemplate x:Key="SoundTileDataTemplate">
            <StackPanel>

                <Grid Background="{StaticResource PhoneAccentBrush}" 
                    Margin="0,5,6,0" Height="56" Width="400" 


                    toolkit:TiltEffect.IsTiltEnabled="True">
                    <Border BorderBrush="white" BorderThickness="3" CornerRadius="15,15,15,15" />
                    <TextBlock Text="{Binding Title}" FontSize="19" TextWrapping="Wrap" Width="140" FontFamily="Tahoma" />
                    <Image Source="/Assets/tiles/soundwave1.png" Width="30" VerticalAlignment="Bottom" HorizontalAlignment="Right" Margin="0,0,6,6" Visibility="{Binding Status, Converter={StaticResource DownloadStatusToIconVisibilityConverter}}" />
                    <ProgressBar Height="12" VerticalAlignment="Bottom" Padding="0" Margin="0" Foreground="{StaticResource PhoneForegroundBrush}" Value="{Binding DownloadProgress}" Visibility="{Binding Status, Converter={StaticResource DownloadStatusToProgressBarVisibilityConverter}}"/>
                </Grid>
            </StackPanel>
        </DataTemplate>


网格正在设置背景色,但形状与边框不同。去掉这个

<Grid Background="{StaticResource PhoneAccentBrush}"

网格正在设置背景色,但形状与边框不同。去掉这个

<Grid Background="{StaticResource PhoneAccentBrush}"