资源简介
C#把文件拖动到窗口上面 Q698507 问题的回答 https://ask.csdn.net/questions/698507
代码片段和文件信息
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 Q698507
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_DragDrop(object sender DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{
label1.Text = ((string[])e.Data.GetData(DataFormats.FileDrop.ToString()))[0];
}
}
private void Form1_DragOver(object sender DragEventArgs e)
{
e.Effect = DragDropEffects.Copy;
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 8192 2018-08-26 14:10 Q698507\Q698507\bin\Debug\Q698507.exe
文件 24064 2018-08-26 14:10 Q698507\Q698507\bin\Debug\Q698507.pdb
文件 11600 2018-08-26 14:02 Q698507\Q698507\bin\Debug\Q698507.vshost.exe
文件 490 2018-04-12 07:35 Q698507\Q698507\bin\Debug\Q698507.vshost.exe.manifest
文件 776 2018-08-26 14:10 Q698507\Q698507\Form1.cs
文件 2183 2018-08-26 14:10 Q698507\Q698507\Form1.Designer.cs
文件 5817 2018-08-26 14:10 Q698507\Q698507\Form1.resx
文件 2867 2018-08-26 14:02 Q698507\Q698507\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6395 2018-08-26 14:10 Q698507\Q698507\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 729 2018-08-26 14:10 Q698507\Q698507\obj\x86\Debug\Q698507.csproj.FileListAbsolute.txt
文件 975 2018-08-26 14:10 Q698507\Q698507\obj\x86\Debug\Q698507.csproj.GenerateResource.Cache
文件 8192 2018-08-26 14:10 Q698507\Q698507\obj\x86\Debug\Q698507.exe
文件 180 2018-08-26 14:10 Q698507\Q698507\obj\x86\Debug\Q698507.Form1.resources
文件 24064 2018-08-26 14:10 Q698507\Q698507\obj\x86\Debug\Q698507.pdb
文件 180 2018-08-26 14:08 Q698507\Q698507\obj\x86\Debug\Q698507.Properties.Resources.resources
文件 499 2018-08-26 14:02 Q698507\Q698507\Program.cs
文件 1426 2018-08-26 14:02 Q698507\Q698507\Properties\AssemblyInfo.cs
文件 2844 2018-08-26 14:02 Q698507\Q698507\Properties\Resources.Designer.cs
文件 5612 2018-08-26 14:02 Q698507\Q698507\Properties\Resources.resx
文件 1094 2018-08-26 14:02 Q698507\Q698507\Properties\Settings.Designer.cs
文件 249 2018-08-26 14:02 Q698507\Q698507\Properties\Settings.settings
文件 3673 2018-08-26 14:08 Q698507\Q698507\Q698507.csproj
文件 863 2018-08-26 14:02 Q698507\Q698507.sln
..A..H. 17920 2018-08-26 14:16 Q698507\Q698507.suo
目录 0 2018-08-26 14:02 Q698507\Q698507\obj\x86\Debug\TempPE
目录 0 2018-08-26 14:10 Q698507\Q698507\obj\x86\Debug
目录 0 2018-08-26 14:09 Q698507\Q698507\bin\Debug
目录 0 2018-08-26 14:02 Q698507\Q698507\obj\x86
目录 0 2018-08-26 14:02 Q698507\Q698507\bin
目录 0 2018-08-26 14:02 Q698507\Q698507\obj
............此处省略6个文件信息
- 上一篇:halcon联合C#车牌识别
- 下一篇:11 如何在工具栏添加下拉菜单.rar
评论
共有 条评论