。net用代码写得一个控件怎样让它再响应事件呢

Button mybutton = new Button(); mybutton.Text = "More"; mybutton.Click+=new EventHandler(mybutton_Click);
再定义一个 protected void mybutton_Click(object sender, EventArgs e) {
。。。。。。。
}

但是不响应事件

Form 升起提示框 = new Form();
升起提示框.FormClosed += new FormClosedEventHandler(升起提示框_关闭);
void 升起提示框_关闭(object sender, EventArgs e)
{
MessageBox.Show("窗体关闭", "窗体关闭事件");
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2014-01-08
你要在控件的“事件”中添加点击鼠标事件追问

不对,不是那个 ,是用代码编写的 ,不能响应事件

相似回答
大家正在搜