gpt4 book ai didi

c# - 如何将文件拖放到应用程序中?

转载 作者:IT王子 更新时间:2023-10-29 03:29:02 24 4
gpt4 key购买 nike

我在 Borland 的 Turbo C++ 中看到过这样做环境,但我不确定如何处理我正在处理的 C# 应用程序。是否有需要注意的最佳做法或问题?

最佳答案

一些示例代码:

  public partial class Form1 : Form {
public Form1() {
InitializeComponent();
this.AllowDrop = true;
this.DragEnter += new DragEventHandler(Form1_DragEnter);
this.DragDrop += new DragEventHandler(Form1_DragDrop);
}

void Form1_DragEnter(object sender, DragEventArgs e) {
if (e.Data.GetDataPresent(DataFormats.FileDrop)) e.Effect = DragDropEffects.Copy;
}

void Form1_DragDrop(object sender, DragEventArgs e) {
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
foreach (string file in files) Console.WriteLine(file);
}
}

关于c# - 如何将文件拖放到应用程序中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68598/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com