C# 應用程式的拖曳功能
問題:
問題:
如何拖曳並拖曳將功能放入C# 應用程式中,類似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# 應用程式中實現拖放?的詳細內容。更多資訊請關注PHP中文網其他相關文章!