显示 WP7 应用程序的磁贴?
如何使应用程序的图块(大图像)在菜单中可见?
How do I make the application's tile (big image) visible in the menu?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使应用程序的图块(大图像)在菜单中可见?
How do I make the application's tile (big image) visible in the menu?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
所有应用程序列表中显示的图像称为
ApplicationIcon.png
,当您创建应用程序时将应用程序固定到主页时显示的图像称为Background.png
项目。修改这些文件以包含您想要的任何图像;只要保持它们的大小相同即可。ApplicationIcon.png
的默认值为 62x62 像素,Background.png
的默认值为 173x173 像素。如果你愿意,你可以重命名它们,但在我看来,这不值得麻烦。另外,将它们保留在项目的根目录下,您可以重新定位Background.png
,然后修改WMAppManifest.xml
以指向移动的文件,但这不适用于ApplicationIcon.png
。最后,在解决方案资源管理器中,单击每个文件并查看属性(在属性管理器窗口中,可以从“工具”菜单启动)。确保将
BuildAction
属性设置为Content
并将Copy to output
选项设置为Copy if newer
(或始终复制
)。要回答问题的第二部分,您无法以编程方式将应用程序固定到开始菜单。
The image shown in the list of all applications is called
ApplicationIcon.png
and the one shown when you pin an application to the main page is calledBackground.png
when you create the project. Modify these files to contains whatever image you want; just keep their sizes the same. The defaults are 62x62 pixels forApplicationIcon.png
and 173x173 pixels forBackground.png
. You can rename these if you want, but IMO its not worth the trouble. Also, keep them at the root of the project, you can relocateBackground.png
and then modifyWMAppManifest.xml
to point to the moved file but this doesn't work forApplicationIcon.png
.Finally, in the solution explorer, click on each file and look at the properties (in the property manager window, this can be launched from the Tools menu). Make sure the
BuildAction
property is set toContent
and theCopy to output
option is set toCopy if newer
(orCopy always
).To answer the second part of your question, you cannot programatically pin your application to the start menu.
在主屏幕上可见?在应用程序列表中,点击并按住该项目,您将看到“固定启动”选项。
或者你的意思是如何在你的应用程序中设置它?
Visible on the home screen? in the app list, tap and hold the item, you'll get a "pin to start" option.
Or do you mean how do you set it in your app?