Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个触发时弹出的 WPF 窗口。弹出窗口有几个文本框。当我选择其中一个文本框并开始键入时,焦点转到 Excel 电子表格,击键被发送到活动单元格。有人知道我该如何解决吗?
谢谢
我找到了解决方案。
在显示弹出窗口之前必须更改以下属性。
Globals.ThisAddIn.Application.Interactive = false;
然后在关闭时重置为 true
Globals.ThisAddIn.Application.Interactive = true;