VS.NET 2003 - C# drag and drop

M

MD

Why is it that the DragDrop and DragEnter events don't appear in the
Properties window (lightning bolt) of a RichTextBox? I've added the event
handlers after the InitializeComponent() call, and the drag and drop works
great. But why is it missing from the IDE?
 
K

Keith Patrick

Wow, very interesting. It may be related to the fact that DragDrop event is
listed as internal the .Net framework and therefore hidden from view
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html
/frlrfSystemWindowsFormsRichTextBoxClassDragDropTopic.asp) Now, one has to
wonder why on earth that particular event is internal to .Net. It's not
like ContextBoundObject-related stuff which deals with method message
interception...this is a common event on a common control!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top