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.
我正在使用 ScintillaNet 控件为我的工作场所使用的专有语言制作编辑器。
我正在尝试实现 CallTip 功能,但由于某种原因,未调用 DwellStart 事件。我找不到任何需要设置的标志,并且(按照规范)找不到任何文档。
我通过设计器实现了事件处理程序,因此代码是自动生成的。
有没有人从头开始实施 CallTip 并知道出了什么问题?
好的,所以我做了更多的实验,我发现我必须(通过 NativeInterface)将 Dwell 时间设置为大于零的值才能启用它。
我无法通过包装器本身找到任何方法来做到这一点。
scintilla1.NativeInterface.SetMouseDwellTime(3000);
(使用毫秒)