Silverlight 网页上的图标
我想知道如何将我们自己的自定义图标添加到 Silverlight 应用程序的网页中?我知道如何设置文本(使用页面的标题属性),但图标却让我困惑。
例如,请参见下图。最左侧的选项卡上有代表 Google 的 G,最右侧的选项卡上有 CNN 图标。我怎样才能在那里拥有自己的?
替代文本 http://www.umail.ucsb.edu/~mguidry/ firefox/tab.jpg
感谢您的帮助:)
I was wondering how to add our own custom icon to the web page for our Silverlight application? I know how to set the text (using the Title property for the Page), but the icon eludes me.
For example, see the below image. The most left tab has the G for Google, and the most right one has the CNN icon. How can I get my own there?
alt text http://www.umail.ucsb.edu/~mguidry/firefox/tab.jpg
Thanks for your help :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这实际上只是一个标准的 Web 约定,并且独立于 Silverlight 工作。
首先生成您的图标文件(您可以使用这样的网站作为快捷方式)并将图标文件上传到您的网站根目录 - 将其命名为 favicon.ico
刷新页面(可能需要 + F5 来清除缓存),您的图标应根据需要显示。
This is actually just a standard web convention and works independently of Silverlight.
Begin by generating your icon file (you can use a site like this as a shortcut) and upload the icon file to your site root- giving it the name favicon.ico
Refresh the page (might need to + F5 to clear cache) and your icon should appear as desired.
嗯...
将 favicon 放在根目录中可以在 Firefox 和 Google Chrome 中工作,但不能在 Internet Explorer 中工作。有什么想法可能会导致这种情况吗?
编辑:发现错误。 IE 仅接受 .ico 文件。因此,通过将名为 favicon.ico 的图标放入我的根文件夹中,并将这些行添加到我的 .aspx 页面中,一切正常:
Hmmm...
Putting the favicon in the root works in Firefox and Google Chrome, but not in Internet Explorer. Any thoughts on what might cause this?
EDIT: Found the error. IE accepts only .ico files. So by putting an icon called favicon.ico in my root folder, and adding these lines to my .aspx page, everything works:
这可能会有所帮助
http://www.w3.org/2005/10/howto-favicon
另外,如果您需要创建图标,则它需要采用“.ico”格式。使用 Photoshop 您可以创建图标,但需要一个插件才能导出为 favicon.ico 格式。
http://www.photoshopsupport.com/tutorials/jennifer/favicon.html
您的站点根目录是您的第一个主页所在的位置,例如index.html 或index.asp 或index.php。
在大多数网络托管计划中,如果您看到这样的文件夹,那么它很可能是您的“根”文件夹,并且有一个名为“public_html”的文件夹。
This might be helpful
http://www.w3.org/2005/10/howto-favicon
Also, if you need to create a favicon it needs to be in the ".ico" format. Using photoshop you can create an icon, but you need a plugin to export to the favicon.ico format.
http://www.photoshopsupport.com/tutorials/jennifer/favicon.html
And you site root is where your very first homepage resides for example index.html or index.asp, or index.php.
On most web hosting plans there is a folder called "public_html" if you see a folder like this that is most likely your "root" folder.