c# 设计鼠标小游戏 窗体程序 鼠标每次点击它都会跳到窗体其他位置 图像是任意的图片
1个回答
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
Random r = new Random(1);
int move_flag = 1;
private void pictureBox1_MouseEnter(object sender, EventArgs e)
{
if (move_flag == 1)
{
pictureBox1.Location = new Point(r.Next(0, this.Size.Width - pictureBox1.Size.Width), r.Next(0, this.Size.Height - pictureBox1.Size.Height));
}
}
private void Form1_MouseDoubleClick(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
move_flag = 1;
}
else
{
move_flag = 0;
}
}
}
}
//望采纳
//有任何问题欢迎追问
追问
非常感谢 还想追问一个问题 label的image的路径怎么写啊 我是把icon放在Bin\debug下的 因为我想在触发某个事件后 label原本的image换成另一个
追答
那就换个控件,用Image或者Picture放图片用着两个好用很多
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询