如何根据光标的位置确定回车对应的按钮?
Button1的事件里:
LabelTip.Text=this.TextBox1.Text;
Button2的事件里:
LabelTip.Text=this.TextBox2.Text;
在TextBox1里面输入"Good Luck!", 在TextBox2里输入"Pretty girl!"
当光标在TextBox1时,用户按下回车键后,Label就显示Good Luck!当光标在TextBox2时,用户按下回车键后,Label就显示Pretty girl!
这种效果如何实现?好像不太容易实现.
谢谢了.
------解决方案-------------------- private void textBox1_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e)
{
if(e.KeyCode==Keys.Enter)
this.label1.Text = this.textBox1.Text;
}
------解决方案--------------------用TEXTBOX的事件!然后判断按键值满足什么时出现什么样的结果!