更改 C#.net 中 OpenFileDialog 中的按钮文本

发布于 2024-08-12 02:57:21 字数 64 浏览 4 评论 0原文

有谁知道如何更改 C#.NET 中 Windows.Forms 中 OpenFileDialog 中按钮上的文本?

Does anyone knows how to change text on button in OpenFileDialog in Windows.Forms in C#.NET?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

内心旳酸楚 2024-08-19 02:57:21

看一下 CodeProject 上的这个示例: OpenFileDialogEx

基本上,您需要听获取模式对话框中的 WM_ACTIVATE 消息,然后将窗口句柄传递给 System.Windows.Forms.NativeWindow。从那里,您可以自定义对话框。

我并不是说这是唯一的解决方案,但看起来它会以最少的工作量完成任务。

Take a look at this example on CodeProject: OpenFileDialogEx

Basically, you will need to listen for the WM_ACTIVATE message from the modal dialog and then pass the window handle to System.Windows.Forms.NativeWindow. From there, you can customize the dialog.

I'm not saying this is the only solution, but it looks like it will do the trick with the least amount of work from your end.

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