So I want to create a Program which can rename multiple FileNames at once. I succeed with Java to write such a program, but now switched to C# because I want a Windows App. Now I want to implement a function where I can just drag files from Windows directly into my listBox and show the FilePaths. But I just started using VS with C# some hours ago and don't know how to do it.
I think, I need to use this method for it, but I don't know any classes in C# `
private void listBox1_DragEnter(object sender, DragEventArgs e)
{}
`