VS.NET 2003 - C# drag and drop

  • Thread starter Thread starter MD
  • Start date Start date
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?
 
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!
 
Back
Top