silverlight - 文件扩展名
我正在使用 Silverlight OOB 开发文件浏览器。我需要一种方法来获取并显示与应用程序中的每个文件关联的图标。注意,我只需要显示图标,不需要打开文件。
I am working on a file explorer using Silverlight OOB. I need a way to get and display the icon associated with each file in my application. Note, I only need to show the icons, I don´t need to open the files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,您正在构建类似 Windows 资源管理器的东西,并希望通过在程序名称之前显示程序图标来模仿其列表视图。
我不确定 OOB 是否有权访问 System.Drawing.Icon 类,但如果可以,您可以使用以下代码获取任何给定文件的图标:
如果没有,唯一的方法您可以通过将最常见文件格式的图标存储在字典中并根据文件扩展名从那里检索它们来做到这一点。
If I understood you right, you're building something like Windows Explorer and want to mimic its list view by showing the program icons right before their names.
I'm not sure whether OOB has access to the
System.Drawing.Icon
class, but if so, you can use the following code to get the icon for any given file:If not, the only way you can do it is by storing the icons for most common file formats in a dictionary and retrieving them from there based upon file extension.