C#窗体程序图片拖放操作未实现,代码如下: (求高手指点) 5

usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Da... 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 拖放移动
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void pictureBox1_MouseDown(object sender, MouseEventArgs e)
{
this.pictureBox1.DoDragDrop(this.pictureBox1.Image, DragDropEffects.Move);
}

private void pictureBox2_DragDrop_1(object sender, DragEventArgs e)
{
pictureBox2.Image.Save((string)e.Data.GetData(DataFormats.Bitmap));
}

private void pictureBox2_DragEnter_1(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.Bitmap))
{
e.Effect = DragDropEffects.Move;
}

}
}
}
展开
 我来答
章氏SaiKouDa
2011-08-03 · TA获得超过212个赞
知道小有建树答主
回答量:340
采纳率:0%
帮助的人:209万
展开全部
this.pictureBox1.DoDragDrop(this.pictureBox1.Image, DragDropEffects.Move);
1 没看到这个函数的定义

2 private void pictureBox2_DragDrop_1(object sender, DragEventArgs e)
这种程序可以自己生成的委托函数(处理事件的函数),当它出现了XXX_1时,说明你一开使把不带_1的删了,然后又让程序生成了这个事件函数。
问题是这个函数还有初始化调用的地方,在出初始化里面也自动的添加了。
所以看看那报错的提示,点击报错的行,你就能定位到它
是一个[+= XXXXXx]一串。

我的QQ跟我的名字一样。
我喜欢规划问题,而且比一般的[好学生]要好很多级,欢迎挑战者
我遇到有趣的题时,会做出来分享,同时增加我的收藏
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友f43968375
2011-08-02 · TA获得超过434个赞
知道小有建树答主
回答量:591
采纳率:0%
帮助的人:518万
展开全部
if (e.Data.GetDataPresent(DataFormats.Bitmap))
这个错了吧,应该是if (e.Data.GetDataPresent(typeof(System.Drawing.Image)))
追问
大侠,还是不行哪?
追答
你要实现什么效果?
picturebox2的allowDrop属性设置成true了没有?
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式