<tfoot id='BXSVP'></tfoot>

      <i id='BXSVP'><tr id='BXSVP'><dt id='BXSVP'><q id='BXSVP'><span id='BXSVP'><b id='BXSVP'><form id='BXSVP'><ins id='BXSVP'></ins><ul id='BXSVP'></ul><sub id='BXSVP'></sub></form><legend id='BXSVP'></legend><bdo id='BXSVP'><pre id='BXSVP'><center id='BXSVP'></center></pre></bdo></b><th id='BXSVP'></th></span></q></dt></tr></i><div id='BXSVP'><tfoot id='BXSVP'></tfoot><dl id='BXSVP'><fieldset id='BXSVP'></fieldset></dl></div>
    1. <legend id='BXSVP'><style id='BXSVP'><dir id='BXSVP'><q id='BXSVP'></q></dir></style></legend>
        <bdo id='BXSVP'></bdo><ul id='BXSVP'></ul>

      1. <small id='BXSVP'></small><noframes id='BXSVP'>

        如何在文本框密码字段上禁用系统的大写锁定通知

        how to disable System#39;s caps-lock notification on textbox password field(如何在文本框密码字段上禁用系统的大写锁定通知)

        <small id='Y0DZb'></small><noframes id='Y0DZb'>

            • <bdo id='Y0DZb'></bdo><ul id='Y0DZb'></ul>

                  <legend id='Y0DZb'><style id='Y0DZb'><dir id='Y0DZb'><q id='Y0DZb'></q></dir></style></legend>
                1. <tfoot id='Y0DZb'></tfoot>
                    <tbody id='Y0DZb'></tbody>
                  <i id='Y0DZb'><tr id='Y0DZb'><dt id='Y0DZb'><q id='Y0DZb'><span id='Y0DZb'><b id='Y0DZb'><form id='Y0DZb'><ins id='Y0DZb'></ins><ul id='Y0DZb'></ul><sub id='Y0DZb'></sub></form><legend id='Y0DZb'></legend><bdo id='Y0DZb'><pre id='Y0DZb'><center id='Y0DZb'></center></pre></bdo></b><th id='Y0DZb'></th></span></q></dt></tr></i><div id='Y0DZb'><tfoot id='Y0DZb'></tfoot><dl id='Y0DZb'><fieldset id='Y0DZb'></fieldset></dl></div>
                  本文介绍了如何在文本框密码字段上禁用系统的大写锁定通知的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在 Winforms Textbox 中,我定义了新的 ToolTip 并进行了配置.我已将 PasswordChar 设置为*".但是,当大写锁定打开时,会显示两个 tooltip.其中一个是我的,另一个是系统默认的 tooltip 通知.我只想显示我的 tooltip.我想禁用系统的tooltip.如何禁用它?

                  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?

                  推荐答案

                  一种方法是从现有的文本框控件派生您自己的文本框控件并处理 EM_SHOWBALLOONTIP 消息.然后只需将此控件拖到您的表单上,而不是常规的文本框控件.

                  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.

                  public partial class PasswordTextBox : TextBox
                  {
                      private const int EM_SHOWBALLOONTIP = 0x1503;
                  
                      protected override void WndProc(ref Message m)
                      {
                          if (m.Msg == EM_SHOWBALLOONTIP)
                          {
                              m.Result = (IntPtr)0;
                              return;
                          }
                          base.WndProc(ref m);
                      }
                  
                      public PasswordTextBox()
                      {
                          InitializeComponent();
                      }
                  }
                  

                  这篇关于如何在文本框密码字段上禁用系统的大写锁定通知的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How to keep the Text of a Read only TextBox after PostBack()?(PostBack()之后如何保留只读文本框的文本?)
                  Winforms Textbox - Using Ctrl-Backspace to Delete Whole Word(Winforms 文本框 - 使用 Ctrl-Backspace 删除整个单词)
                  C# - Add button click events using code(C# - 使用代码添加按钮单击事件)
                  Multi-color TextBox C#(多色文本框 C#)
                  How can i set the caret position to a specific index in passwordbox in WPF(如何将插入符号位置设置为 WPF 密码框中的特定索引)
                  C# Numeric Only TextBox Control(C# 纯数字文本框控件)

                    <tbody id='fiq2N'></tbody>

                  <tfoot id='fiq2N'></tfoot>
                2. <small id='fiq2N'></small><noframes id='fiq2N'>

                      <bdo id='fiq2N'></bdo><ul id='fiq2N'></ul>
                        <i id='fiq2N'><tr id='fiq2N'><dt id='fiq2N'><q id='fiq2N'><span id='fiq2N'><b id='fiq2N'><form id='fiq2N'><ins id='fiq2N'></ins><ul id='fiq2N'></ul><sub id='fiq2N'></sub></form><legend id='fiq2N'></legend><bdo id='fiq2N'><pre id='fiq2N'><center id='fiq2N'></center></pre></bdo></b><th id='fiq2N'></th></span></q></dt></tr></i><div id='fiq2N'><tfoot id='fiq2N'></tfoot><dl id='fiq2N'><fieldset id='fiq2N'></fieldset></dl></div>

                        • <legend id='fiq2N'><style id='fiq2N'><dir id='fiq2N'><q id='fiq2N'></q></dir></style></legend>