更改 C#.net 中 OpenFileDialog 中的按钮文本
有谁知道如何更改 C#.NET 中 Windows.Forms 中 OpenFileDialog 中按钮上的文本?
Does anyone knows how to change text on button in OpenFileDialog in Windows.Forms in C#.NET?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 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.