Welcome to WindowsClient.net | Sign in | Join

Here are some frequently asked questions about Windows Forms and their answers.

Windows Forms FAQs

What's the IDropTarget interface for? Why would a control implement it?

IDropTarget is a new interface that factors out the four drag drop methods - OnDragEnter, OnDragLeave, OnDragDrop, and OnDragOver - into an interface so that it can be implemented elsewhere. It is mostly an implementation detail.