C# PictureBox单击事件用代码怎么写

2024-12-27 05:36:02
推荐回答(2个)
回答1:

首先看是web还是winfrom
一:如果是web,方法很多
比如用链接,或者是用hyperlink等
二:如果是winfrom,
窗体加载或者构造的时候注册一下事件
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);

private void pictureBox1_Click(object sender, EventArgs e)
{
MessageBox.Show("aa");
}

回答2:

窗体加载或者构造的时候注册一下事件
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);

private void pictureBox1_Click(object sender, EventArgs e)
{
MessageBox.Show("aa");
}