using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.IO;
using System.Windows.Forms;
namespace 文件拖拽
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_DragEnter(object sender, DragEventArgs e)
{
string[] s = (string[])e.Data.GetData(DataFormats.FileDrop);
string [] QieGe = s[0].Split('.');
string HouZui =QieGe[QieGe.Length-1];
if (HouZui.Equals("jpg") || HouZui.Equals("png") || HouZui.Equals("bmp&#
C#拖拽文件并显示
最新推荐文章于 2019-09-14 23:05:18 发布
该博客介绍了如何使用C#在WinForm应用中实现文件拖放功能,当拖入的文件为.jpg、.png、.bmp或.gif格式时,文件内容将显示在pictureBox控件中;否则,文本内容会加载到textBox控件。
摘要由CSDN通过智能技术生成