2012-09-10 6 views
5

は、私は単純にコードを書く:私はテキストボックス( "テキスト")とチェックボックスを使用してWindowsを入手TextBox.TextChangedと "CTRL-"

namespace Test01 
{ 
    public partial class Form1 : Form 
    { 
     public Form1() 
     { 
      InitializeComponent(); 
     } 
    } 
} 

using System.Windows.Forms; 

namespace Test01 
{ 
    partial class Form1 
    { 
     /// <summary> 
     /// Required designer variable. 
     /// </summary> 
     private System.ComponentModel.IContainer components = null; 

     /// <summary> 
     /// Clean up any resources being used. 
     /// </summary> 
     /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 
     protected override void Dispose(bool disposing) 
     { 
      if (disposing && (components != null)) 
      { 
       components.Dispose(); 
      } 
      base.Dispose(disposing); 
     } 

     #region Windows Form Designer generated code 

     /// <summary> 
     /// Required method for Designer support - do not modify 
     /// the contents of this method with the code editor. 
     /// </summary> 
     private void InitializeComponent() 
     { 
      this.textBox1 = new System.Windows.Forms.TextBox(); 
      this.checkBox1 = new System.Windows.Forms.CheckBox(); 
      this.SuspendLayout(); 
      // 
      // textBox1 
      // 
      this.textBox1.Location = new System.Drawing.Point(33, 32); 
      this.textBox1.Name = "textBox1"; 
      this.textBox1.Size = new System.Drawing.Size(186, 20); 
      this.textBox1.TabIndex = 0; 
      this.textBox1.Text = "Text"; 
      this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged); 
      // 
      // checkBox1 
      // 
      this.checkBox1.AutoSize = true; 
      this.checkBox1.Location = new System.Drawing.Point(38, 65); 
      this.checkBox1.Name = "checkBox1"; 
      this.checkBox1.Size = new System.Drawing.Size(80, 17); 
      this.checkBox1.TabIndex = 1; 
      this.checkBox1.Text = "checkBox1"; 
      this.checkBox1.UseVisualStyleBackColor = true; 
      // 
      // Form1 
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 
      this.ClientSize = new System.Drawing.Size(234, 86); 
      this.Controls.Add(this.checkBox1); 
      this.Controls.Add(this.textBox1); 
      this.Name = "Form1"; 
      this.Text = "Form1"; 
      this.ResumeLayout(false); 
      this.PerformLayout(); 

     } 

     void textBox1_TextChanged(object sender, System.EventArgs e) 
     { 
      if (this.checkBox1.Checked) 
       this.checkBox1.CheckState = CheckState.Unchecked; 
      else 
       this.checkBox1.CheckState = CheckState.Checked; 
     } 

     #endregion 

     private System.Windows.Forms.TextBox textBox1; 
     private System.Windows.Forms.CheckBox checkBox1; 
    } 
} 

とします。私がテキストボックスにフォーカスを当てて、Ctrlのチェックボックスをトグル状態にすると、TextBox.TextChanged raisedとtextBox1_TextChangedが実行されます。 しかし、TextChangedイベントが発生した理由を理解できません。Ctrl

+1

を私はテキストがすでに選択されている場合、それは起こらない旨の通知をしなかったので、のではなく、テキストの選択を行うには可能性がありキーの組み合わせ。 –

+0

@JustinHarveyはい、テキストが既に選択されていて、Ctrl-aを押しても起こりません。マウスやコンテキストメニューでテキストを選択しても起こりません。しかし、私は説明を見つけることができません。 – hired777

+0

私はちょっとデバッグしようとしましたが、テキストボックスがテキスト入力時と全く同じメッセージを受け取るように見えます( 'WM_USER wparam:0300075C lParam:0006075C')。したがって、.NET側では「正常」と思われ、C/C++アプリケーションと同様でなければなりません。残念ながら、私は十分な詳細を掘るWindows APIについてはわかりません... –

答えて

6

私は同じ問題を満たし、以下のコードを使用します。

private void textBox1_TextChanged(Object sender, EventArgs e) 
{ 
    if (textBox1.SelectedText == textBox1.Text && textBox1.Text != "") 
     return; 
} 
0

あなたは以下の条件を追加することによって、この動作を抑制することができます。

void textBox1_TextChanged(object sender, System.EventArgs e) 
    { 
     if (ModifierKeys == Keys.Control) 
      return; 

     //rest of the code 
    } 
0

回避策を私の問題のために:

void textBox1_TextChanged(object sender, System.EventArgs e) 
{ 
    if (_oldText.Equals(this.textBox1.Text)) 
     return; 
    _oldText = this.textBox1.Text; 
    //rest of code 
} 

私はよりよい解決策を見つけるcan`t。

関連する問題