private void textBox1_MouseClick(object sender, MouseEventArgs e)
{
comboBox1.Text = "你点了textBox";
}
private void comboBox1_MouseClick(object sender, MouseEventArgs e)
{
textBox1.Text = "你点了comboBox";
}
mouseclick事件在 右键你的控件--属性--点属性框上的闪电图标,就是事件了,mouseclick是鼠标点击事件
你在页面上放两个TextBox(Design视图)两个控件的名称分别为TextBox1,TextBox2当然我用的是VS2008 然后在 Page_Load里面
写入以下代码:
protected void Page_Load(object sender, EventArgs e)
{
this.TextBox1.Attributes.Add("onclick", "dd()");
}
然后切换到 Source视图在
//先往窗体拖2个textbox控件
//然后在MouseUp事件写
private void textBox1_MouseUp(object sender, MouseEventArgs e)
{
textBox1.Text="当点击我的时候,我就显示在textbox2";
textBox2.Text = textBox1.Text;
}
如果是被点击触发操作的话:
用VS的话,选中控件,然后右键属性,上面事件》》操作》》chick然后双击就可以写代码了。
onfocus 获得焦点事件
onblur 失去焦点