16 references to QueryContinueDrag
System.Windows.Forms (6)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (2)
1550add => base.QueryContinueDrag += value; 1551remove => base.QueryContinueDrag -= value;
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (2)
737control.QueryContinueDrag += HandleQueryContinueDrag; 782control.QueryContinueDrag -= HandleQueryContinueDrag;
System\Windows\Forms\OLE\QueryContinueDragEventArgs.cs (1)
7/// Provides data for the <see cref="Control.QueryContinueDrag"/> event.
System\Windows\Forms\OLE\QueryContinueDragEventHandler.cs (1)
7/// Represents a method that will handle the <see cref="Control.QueryContinueDrag"/>
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\Behavior\BehaviorService.cs (2)
188DropSource.QueryContinueDrag += dropSourceBehavior.QueryContinueDrag; 212DropSource.QueryContinueDrag -= dropSourceBehavior.QueryContinueDrag;
System\Windows\Forms\Design\ToolStripItemBehavior.cs (2)
602DropSource.QueryContinueDrag += QueryContinueDrag; 624DropSource.QueryContinueDrag -= QueryContinueDrag;
System\Windows\Forms\Design\ToolStripPanelDesigner.cs (1)
510nameof(ToolStripPanel.QueryContinueDrag),
System.Windows.Forms.Tests (2)
System\Windows\Forms\ControlTests.Handlers.cs (2)
4794control.QueryContinueDrag += handler; 4799control.QueryContinueDrag -= handler;
System.Windows.Forms.UI.IntegrationTests (1)
DragDropTests.cs (1)
610ListDragSource.QueryContinueDrag += ListDragSource_QueryContinueDrag;
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHost.cs (2)
1420add { base.QueryContinueDrag += value; } 1421remove { base.QueryContinueDrag -= value; }