码迷,mamicode.com
首页 > Windows程序 > 详细

winform中文本框添加拖拽功能

时间:2016-05-23 16:52:50      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:

对一个文本框添加拖拽功能:

 private void txtFolder_DragEnter(object sender, DragEventArgs e)
        {
            if (e.Data.GetDataPresent(DataFormats.FileDrop))
            {
                e.Effect = DragDropEffects.Link;
                this.txtFolder.Cursor = System.Windows.Forms.Cursors.Arrow;//指定鼠标形状   
            }
            else
            {
                e.Effect = DragDropEffects.None;
            }
        }

        private void txtFolder_DragDrop(object sender, DragEventArgs e)
        {
            //DataFormats 数据的格式,下有多个静态属性都为string型,除FileDrop格式外还有Bitmap,Text,WaveAudio等格式    
            string path = ((System.Array)e.Data.GetData(DataFormats.FileDrop)).GetValue(0).ToString();
            this.txtFolder.Text = path;
            this.txtFolder.Cursor = System.Windows.Forms.Cursors.IBeam; //还原鼠标形状 
        }

 

winform中文本框添加拖拽功能

标签:

原文地址:http://www.cnblogs.com/lunawzh/p/5520369.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!