// 事件
// this.textBox1.KeyPress += new
System.Windows.Forms.KeyPressEventHandler(this.TextBox1_Press);
private void TextBox1_Press(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
textBox1.Text = "AAA";
}
}
扩展资料:
相关属性
1、TextBox.AutoCompleteCustomSource 属性
获取或设置当 TextBox.AutoCompleteSource 属性设置为 [CustomSource] 时要使用的自定义 T:System.Collections.Specialized.StringCollection。
2、TextBox.AutoCompleteMode 属性
获取或设置一个选项,该选项控制自动完成应用于 TextBox 的方式。
类型:System.Windows.Forms.AutoCompleteMode
AutoCompleteMode 值之一。
以下为这些值:
Append:将最可能的候选字符串的其余部分追加到现有的字符,并突出显示追加的字符。
Suggest:显示与编辑控件关联的辅助下拉列表。 此下拉列表填充了一个或多个建议完成字符串。
SuggestAppend:追加 Suggest 和 Append 选项。
None:禁用自动完成 这是默认值。
3、TextBox.AutoCompleteSource 属性
获取或设置一个值,该值指定用于自动完成的完整字符串的源。
参考资料来源:textbox-百度百科
{
if (e.KeyCode == Keys.Enter)
{
MessageBox.Show("sad");
}
}
按下是KeyDown,抬起是KeyUp 同时KeyPress
// this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TextBox1_Press);
private void TextBox1_Press(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
textBox1.Text = "AAA";
}
}
private void TextBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == '\r')
{
........
}
}
广告 您可能关注的内容 |