标题:转载 C#把外部文件拖入PictureBox中
取消只看楼主
novker
Rank: 1
等 级:新手上路
帖 子:30
专家分:0
注 册:2008-10-20
结帖率:100%
 问题点数:0 回复次数:0 
转载 C#把外部文件拖入PictureBox中
private void Form1_Load(object sender, EventArgs e)   
        {   
            //这句代码不会抱错,但是需要手动输入,.net编辑器无法自动识别AllowDrop   
            this.pictureBox1.AllowDrop = true;   
        }   
            
        private void pictureBox1_DragDrop(object sender, DragEventArgs e)   
        {   
            string fileName = ((System.Array)e.Data.GetData(DataFormats.FileDrop)).GetValue(0).ToString();   
            this.pictureBox1.Image = Image.FromFile(fileName);   
        }   
        private void pictureBox1_DragEnter(object sender, DragEventArgs e)   
        {   
            if (e.Data.GetDataPresent(DataFormats.FileDrop))   
                e.Effect = DragDropEffects.Link;   
            else e.Effect = DragDropEffects.None;   
        }  


搜索更多相关主题的帖子: PictureBox 文件 
2010-11-07 10:30



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-325227-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.050063 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved