silverlight - 文件扩展名

发布于 2024-12-03 19:15:34 字数 87 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花之痕靓丽 2024-12-10 19:15:34

如果我理解正确的话,您正在构建类似 Windows 资源管理器的东西,并希望通过在程序名称之前显示程序图标来模仿其列表视图。

我不确定 OOB 是否有权访问 System.Drawing.Icon 类,但如果可以,您可以使用以下代码获取任何给定文件的图标:

Bitmap icon = System.Drawing.Icon.ExtractAssociatedIcon(filename).ToBitmap();

如果没有,唯一的方法您可以通过将最常见文件格式的图标存储在字典中并根据文件扩展名从那里检索它们来做到这一点。

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:

Bitmap icon = System.Drawing.Icon.ExtractAssociatedIcon(filename).ToBitmap();

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文