C#下面的MouseEnter事件和MouseLeave事件为什么不能真正触发,也就是语句下面是这样写,但不会弹出来

还有,button控件能使用MouseEnter事件和MouseLeave事件吗?privatevoidbutton2_MouseEnter(objectsender,E... 还有,button控件能使用MouseEnter事件和MouseLeave事件吗?
private void button2_MouseEnter(object sender, EventArgs e)
{
if (stage_Number == 1)
{
pictureBox1.Location = new System.Drawing.Point(72, 378);
label1.Location = new System.Drawing.Point(81, 387);
pictureBox1.Visible = true;
label1.Visible = true;
label1.Text = "同级别的较量!";
}
}
private void button2_MouseLeave(object sender, EventArgs e)
{
pictureBox1.Visible = false;
label1.Visible = false;
展开
 我来答
w362435819
2012-08-14 · TA获得超过162个赞
知道小有建树答主
回答量:633
采纳率:0%
帮助的人:374万
展开全部
private void button1_MouseEnter(object sender, EventArgs e)
{
label1.Text = "enter";
}
private void button1_MouseLeave(object sender, EventArgs e)
{
label1.Text = "leave";
}

可以实现
追问
就不能加if和修改Visible属性的语句吗?
追答
可以的
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式