C# 应用程序的拖放功能
问题:
如何合并拖动并将功能放入 C# 应用程序中,类似于 Borland Turbo C 中的功能环境?
答案:
要在 C# 中实现拖放功能,您可以利用以下最佳实践:
代码片段:
为了说明拖放过程,这里有一个示例代码snippet:
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# 应用程序中实现拖放?的详细内容。更多信息请关注PHP中文网其他相关文章!