如何在 WPF OpenFileDialog 中设置窗口图标?
在 WPF 中,将自定义图标放在窗口和菜单上非常简单,但以某种方式将 OpenFileDialog 上的图标更改为应用程序图标以外的其他图标却让我感到困惑。
我意识到 OpenFileDialog() 没有创建 WPF 控件,因为它来自 Microsoft.Win32 命名空间,但必须有一种方法来设置所使用的图标。
Putting custom icons on windows and menus is really simple in WPF, but somehow changing the icon on an OpenFileDialog fto be something other than the application icon is eluding me.
I realize OpenFileDialog() is not creating a WPF control, since it's coming from the Microsoft.Win32 namespace, but there must be a way to set the icon used.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你得到了对话框的句柄,你可以这样做:
获取句柄比较棘手,你必须重写
WndProc
并在创建对话框后监视消息。Well if you get the handle of the dialog, you can do it like this:
Getting the handle is trickier, you have to override
WndProc
and watch for messages after creating the dialog.