In Winforms Textbox
, I have defined new ToolTip
and configured it. I have set the PasswordChar
to '*'. However, when caps lock is on, two tooltip
is shown. One of them is mine the other one is system's default tooltip
notification. I only want to show my tooltip
. I want to disable system's tooltip
. How can I disable it?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Carriage Return (ASCII chr 13) is missing from tex
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
One way is to derive your own textbox control from the existing one and handle the EM_SHOWBALLOONTIP message. Then just drag this control onto your form instead of the regular textbox control.