从 Windows Mobile 应用程序获取文件的图标
我正在使用 C# 开发 Windows mobible 6 的应用程序。我需要获取文件的图标,但我不知道该怎么做=P。
有办法得到吗?
I'm working with C# developing app for windows mobible 6. I need get the icon of a file, but i don't know how to do that =P.
Is there way to get it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,尽管这并不轻松,并且需要使用 PInvoke。 我是这样做的。 (
WinApi
是一个辅助静态类,其中包含 PInvoke 外部函数定义以及许多必需的常量。其中还有更多内容,但我删除了与获取文件图标无关的内容.)Yes, though it's not painless, and requires using PInvoke. Here's how I do it. (
WinApi
is a helper static class that contains PInvoke external functions definitions, along with a number of required constants. There was much more in there but I deleted the stuff that had nothing to do with getting icons for files.)