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;
}
}
}
} 展开
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;
}
}
}
} 展开
2个回答
展开全部
this.pictureBox1.DoDragDrop(this.pictureBox1.Image, DragDropEffects.Move);
1 没看到这个函数的定义
2 private void pictureBox2_DragDrop_1(object sender, DragEventArgs e)
这种程序可以自己生成的委托函数(处理事件的函数),当它出现了XXX_1时,说明你一开使把不带_1的删了,然后又让程序生成了这个事件函数。
问题是这个函数还有初始化调用的地方,在出初始化里面也自动的添加了。
所以看看那报错的提示,点击报错的行,你就能定位到它
是一个[+= XXXXXx]一串。
我的QQ跟我的名字一样。
我喜欢规划问题,而且比一般的[好学生]要好很多级,欢迎挑战者
我遇到有趣的题时,会做出来分享,同时增加我的收藏
1 没看到这个函数的定义
2 private void pictureBox2_DragDrop_1(object sender, DragEventArgs e)
这种程序可以自己生成的委托函数(处理事件的函数),当它出现了XXX_1时,说明你一开使把不带_1的删了,然后又让程序生成了这个事件函数。
问题是这个函数还有初始化调用的地方,在出初始化里面也自动的添加了。
所以看看那报错的提示,点击报错的行,你就能定位到它
是一个[+= XXXXXx]一串。
我的QQ跟我的名字一样。
我喜欢规划问题,而且比一般的[好学生]要好很多级,欢迎挑战者
我遇到有趣的题时,会做出来分享,同时增加我的收藏
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询