C# 애플리케이션에서 드래그 앤 드롭 구현
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!