WPF 无模式对话框呈现文本框不可编辑
我从 WinForms 窗口启动的 WPF 表单在作为无模式对话框启动时显示所有文本框均不可编辑。当它是模态窗口时效果很好。我仍然可以输入空格或粘贴文本。但常规打字不起作用。我使用的是 3.5 SP1。有人知道如何解决这个问题吗?
A WPF form that I launch from a WinForms window shows up with all textboxes as uneditable when it's launched as a modeless dialog. It works well when it's a modal window. I'm still able to type spaces or paste text. But regular typing doesn't work. I'm using 3.5 with SP1. Would anybody know how to resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要确保调用 ElementHost。为您的 WPF 窗口启用ModelessKeyboardInterop。这会连接 WPF 消息循环以允许键盘输入。
You need to make sure to call ElementHost.EnableModelessKeyboardInterop for your WPF Window. This hooks up the WPF message loop to allow keyboard input.