基本信息
源码名称:C# 鼠标拖拽图像 实例源码
源码大小:0.04M
文件格式:.zip
开发语言:C#
更新时间:2013-05-22
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍


拖拽前

拖拽后


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Linq;
using System.Windows.Forms;

namespace MouseDelayImage
{
    public partial class Frm_Main : Form
    {
        bool flag = false;//定义变量,用来标识鼠标是否移动
        public Frm_Main()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            flag = false;
            pictureBox1.Location = new System.Drawing.Point(14, 8);
            openFileDialog1.Filter = "*.jpg,*.jpeg,*.bmp,*.gif,*.ico,*.png,*.tif,*.wmf|*.jpg;*.jpeg;*.bmp;*.gif;*.ico;*.png;*.tif;*.wmf";
            openFileDialog1.ShowDialog();
            Image myImage = System.Drawing.Image.FromFile(openFileDialog1.FileName);
            pictureBox1.Image = myImage;
        }

        private void Frm_Main_MouseMove(object sender, MouseEventArgs e)
        {
            if (flag)													//如果鼠标在窗体中移动
                pictureBox1.Location = new System.Drawing.Point(e.X, e.Y);			//定义PictureBox控件的坐标位置
        }

        private void pictureBox1_MouseEnter(object sender, EventArgs e)
        {
            flag = true;//将标识设置为true
        }
    }
}