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.
我知道什么是 Always-On-Top,但这不是我要找的东西。
“始终聚焦”是指当我单击表单外部时,它不会变灰并变得不可用,我希望表单保持焦点,并且当我单击屏幕外时仍然触发我的 KeyDown 事件。
对于 VBA,您是否正在寻找“ShowModal”表单属性?这将要求在使用表单之外的东西之前关闭表单。在关闭之前,表单将始终“聚焦”。
对于 VB.NET,您可以使用 ShowDialog 事件,但这将不允许用户在窗体关闭之前进行任何工作。