C#中如何实现数据拖动?(拖动图片,到TextBox,并显示)

代码:

 

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

namespace TestKeyPress { public partial class Form2 : Form { public Form2() { InitializeComponent(); }

private void textBox1_DragEnter(object sender, DragEventArgs e) { e.Effect = DragDropEffects.Copy; }

private void textBox1_DragDrop(object sender, DragEventArgs e) { //DataFormats.FileDrop确定你拖动过去的是文件回或者文件夹 if (e.Data.GetDataPresent(DataFormats.FileDrop)) { string realpath = ((System.Array)e.Data.GetData(DataFormats.FileDrop)).GetValue(0).ToString(); //从拖动数据里得到路径 //MessageBox.Show(realpath);测试路径 string p = Path.GetExtension(realpath); //MessageBox.Show(p);测试路径 if (p == ".jpg") { //StreamReader sr = new StreamReader(realpath);读取方式,放弃使用 Image im = Image.FromFile(realpath); int h = im.Height; int w = im.Width; this.pictureBox1.Height = h; this.pictureBox1.Width = w; this.pictureBox1.BackgroundImageLayout = ImageLayout.Stretch; this.pictureBox1.BackgroundImage = im; //将读取到的图片放到picturebox里 //this.pictureBox1.Location = new Point(130 - pictureBox1.Width, 85 - pictureBox1.Height); Point pnl = new Point(this.panel1.Width / 2, this.panel1.Height / 2); Point pic = new Point(); pic.X = pnl.X - pictureBox1.Width / 2; pic.Y = pnl.Y - pictureBox1.Height / 2; this.pictureBox1.Location = pic; //上面的代码是将图片的中心和panel的中心对齐 //this.pictureBox1.Location = new Point(85 ,76); } } else { MessageBox.Show("please select jpg"); } //MessageBox.Show(e.Data.GetType().ToString()); } //放大功能 private void button1_Click(object sender, EventArgs e) { Image im = this.pictureBox1.BackgroundImage; //im.M pictureBox1.Height = (int)(pictureBox1.Height * 1.2); pictureBox1.Width = (int)(pictureBox1.Width * 1.2); Point pnl = new Point(this.panel1.Width / 2, this.panel1.Height / 2); Point pic = new Point(); pic.X = pnl.X - pictureBox1.Width / 2; pic.Y = pnl.Y - pictureBox1.Height / 2; this.pictureBox1.Location = pic; } //缩小功能 private void button2_Click(object sender, EventArgs e) { Image im = this.pictureBox1.BackgroundImage; //im.M pictureBox1.Height = (int)(pictureBox1.Height * 0.85); pictureBox1.Width = (int)(pictureBox1.Width * 0.85); Point pnl = new Point(this.panel1.Width / 2, this.panel1.Height / 2); Point pic = new Point(); pic.X = pnl.X - pictureBox1.Width / 2; pic.Y = pnl.Y - pictureBox1.Height / 2; this.pictureBox1.Location = pic; } private Point start; private Point end; //下面的函数实现,图片在panel里可以拖动 private void panel1_MouseDown(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { start = new Point(e.X, e.Y); end = start; } } private void panel1_MouseUp(object sender, MouseEventArgs e) { end = new Point(e.X, e.Y); int picx = this.pictureBox1.Location.X; int picy = this.pictureBox1.Location.Y; picx += end.X - start.X; picy += end.Y - start.Y; this.pictureBox1.Location = new Point(picx, picy); } } }


数据拖动,主要是在接受数据的地方添加DragEnter和DragDrop事件,必须将接受数据的地方设置为AllowDrop=true,如果在一个窗体内拖动,选择数据的地方也要设置AllowDrop=true,

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值