c# 设计鼠标小游戏 窗体程序 鼠标每次点击它都会跳到窗体其他位置 图像是任意的图片

 我来答
疾风林燕
2017-04-05 · TA获得超过109个赞
知道答主
回答量:96
采纳率:61%
帮助的人:25.2万
展开全部
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放图片用着两个好用很多
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式