嘿我正在创建底部应用栏并添加3个应用栏按钮,如下所示。一个使用内置图标,另外两个使用位图图标
<AppBarButton>
<AppBarButton.Icon>
<BitmapIcon UriSource="ms-appx:///Assets/Like.png" Height="20" Width="20"/>
</AppBarButton.Icon>
带有位图图标的AppBarButton在设计视图中正确显示,它包含在appbar按钮的eclipse中。但是当我在手机上部署它时,应用栏按钮看起来如下(右边两个)
https://s24.postimg.org/q3yg74gx1/wp_ss_20150309_0002.jpg
wron是什么
答案 0 :(得分:5)
我认为您可能已经忘记了适当的填充 - 更多信息at MSDN:
答案 1 :(得分:2)
我建议您在PC上的Microsoft SDKs文件夹中找到默认的Windows Phone图标。就我而言,它是C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v8.1\Icons\Light
。在那里,您可以检查如何正确准备应用程序栏的图标。
它们必须是 76 x 76 带有Alpha通道的PNG图像(包括填充)。