如何以通用方式向所有TextBox声明KeyPress事件处理程序?

时间:2011-05-23 06:28:54

标签: c#-4.0

我在表单中有20个TextBox。我为所有文本框都有一个Common KeyPress事件。

所以我尝试按照以下方式声明按键事件......是否可能?

for (int Cnl = 1; Cnl < 21; Cnl++)
{
   ((RichTextBox)Cnl).KeyPress += new KeyPressEventHandler(this.Comn_KeyPress);
}

2 个答案:

答案 0 :(得分:2)

正确的想法;但是将int转换为RichTextBox永远不会有效。试试这个:

 foreach (var control in this.Controls)
 {
     var text = control as RichTextBox;
     if (text != null)
          text.KeyPress += new KeyPressEventHandler(this.Comn_KeyPress);
 }

答案 1 :(得分:2)

对于WPF应用程序,您可以使用EventManager静态类上的方法注册全局事件处理程序:

// Register the following class handlers for the TextBox XxFocus events.
EventManager.RegisterClassHandler(typeof(TextBox), TextBox.GotKeyboardFocusEvent, 
    new RoutedEventHandler(HandleTextBoxFocus));

然后在事件处理程序中添加您需要的任何逻辑,例如:

    private void HandleTextBoxFocus(Object sender, RoutedEventArgs e)
    {
        (sender as TextBox).SelectAll();
    }