Windows phone 7 新WP7应用程序中使用的foursquare场馆类别图标是否可通过API在我们的客户机中使用?

Windows phone 7 新WP7应用程序中使用的foursquare场馆类别图标是否可通过API在我们的客户机中使用?,windows-phone-7,foursquare,Windows Phone 7,Foursquare,如果它们可以在我们的客户机中使用,我们在哪里可以找到它们?它们是从foursquare返回的相同图标,带有一点XAML魔法来删除边框 这就是我复制效果的方式(为了得到提示,我特别向杰夫·威尔科克斯点头,他首先与4th&Mayor合作): <Grid Width="150" Height="150"> <Border BorderBrush="#FFFFFFFF" BorderThickness="2"> <Grid Opacity="0.

如果它们可以在我们的客户机中使用,我们在哪里可以找到它们?

它们是从foursquare返回的相同图标,带有一点XAML魔法来删除边框

这就是我复制效果的方式(为了得到提示,我特别向杰夫·威尔科克斯点头,他首先与4th&Mayor合作):


<Grid Width="150" Height="150">
    <Border BorderBrush="#FFFFFFFF" BorderThickness="2">
        <Grid Opacity="0.40">
            <Image Width="100" Source="https://foursquare.com/img/categories/arts_entertainment/arcade_64.png" HorizontalAlignment="Right" VerticalAlignment="Bottom" />
            <!-- create a border with same color as icon background and make borders large enough to cover the border of the icon in the lower right corner -->
            <Border BorderBrush="#FFFFFFFF" BorderThickness="60,60,10,10"/>
        </Grid>
    </Border>
    <TextBlock HorizontalAlignment="Left" TextWrapping="Wrap" Text="Microsoft Arcade" VerticalAlignment="Top" Foreground="#FFFFFFFF" FontFamily="Segoe WP Black" Margin="5,0"/>
</Grid>