如何避免按回车键时的嗡鸣声?
典型的就是当你在向TextBox控件输入时按回车键,你将会听到电脑的嗡鸣声.为了避免这个嗡鸣声,可以在回车键的KeyPress事件中处理,设置Handled属性为"true",如下例:
1 void TextBox_KeyPress( object sender, KeyPressEventArgs e )
2 {
4 switch (e.KeyChar)
5 {
6 case '\r':
7 e.Handled = true;
8 break;
9 }
10 }
2 {
4 switch (e.KeyChar)
5 {
6 case '\r':
7 e.Handled = true;
8 break;
9 }
10 }