Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / DropSource.cs / 1 / DropSource.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; /// internal class DropSource : UnsafeNativeMethods.IOleDropSource { private const int DragDropSDrop = 0x00040100; private const int DragDropSCancel = 0x00040101; private const int DragDropSUseDefaultCursors = 0x00040102; private ISupportOleDropSource peer; public DropSource(ISupportOleDropSource peer ) { if (peer == null) throw new ArgumentNullException("peer"); this.peer = peer; } public int OleQueryContinueDrag(int fEscapePressed, int grfKeyState) { QueryContinueDragEventArgs qcdevent = null; bool escapePressed = (fEscapePressed != 0); DragAction action = DragAction.Continue; if (escapePressed) { action = DragAction.Cancel; } else if ((grfKeyState & NativeMethods.MK_LBUTTON) == 0 && (grfKeyState & NativeMethods.MK_RBUTTON) == 0 && (grfKeyState & NativeMethods.MK_MBUTTON) == 0) { action = DragAction.Drop; } qcdevent = new QueryContinueDragEventArgs(grfKeyState,escapePressed, action); peer.OnQueryContinueDrag(qcdevent); int hr = 0; switch (qcdevent.Action) { case DragAction.Drop: hr = DragDropSDrop; break; case DragAction.Cancel: hr = DragDropSCancel; break; } return hr; } public int OleGiveFeedback(int dwEffect) { GiveFeedbackEventArgs gfbevent = new GiveFeedbackEventArgs((DragDropEffects) dwEffect, true); peer.OnGiveFeedback(gfbevent); if (gfbevent.UseDefaultCursors) { return DragDropSUseDefaultCursors; } return 0; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; /// internal class DropSource : UnsafeNativeMethods.IOleDropSource { private const int DragDropSDrop = 0x00040100; private const int DragDropSCancel = 0x00040101; private const int DragDropSUseDefaultCursors = 0x00040102; private ISupportOleDropSource peer; public DropSource(ISupportOleDropSource peer ) { if (peer == null) throw new ArgumentNullException("peer"); this.peer = peer; } public int OleQueryContinueDrag(int fEscapePressed, int grfKeyState) { QueryContinueDragEventArgs qcdevent = null; bool escapePressed = (fEscapePressed != 0); DragAction action = DragAction.Continue; if (escapePressed) { action = DragAction.Cancel; } else if ((grfKeyState & NativeMethods.MK_LBUTTON) == 0 && (grfKeyState & NativeMethods.MK_RBUTTON) == 0 && (grfKeyState & NativeMethods.MK_MBUTTON) == 0) { action = DragAction.Drop; } qcdevent = new QueryContinueDragEventArgs(grfKeyState,escapePressed, action); peer.OnQueryContinueDrag(qcdevent); int hr = 0; switch (qcdevent.Action) { case DragAction.Drop: hr = DragDropSDrop; break; case DragAction.Cancel: hr = DragDropSCancel; break; } return hr; } public int OleGiveFeedback(int dwEffect) { GiveFeedbackEventArgs gfbevent = new GiveFeedbackEventArgs((DragDropEffects) dwEffect, true); peer.OnGiveFeedback(gfbevent); if (gfbevent.UseDefaultCursors) { return DragDropSUseDefaultCursors; } return 0; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UrlParameterReader.cs
- EntityClientCacheKey.cs
- ListCommandEventArgs.cs
- Helper.cs
- HtmlShimManager.cs
- HtmlTableRowCollection.cs
- SHA384.cs
- ConnectionInterfaceCollection.cs
- StringCollection.cs
- UserNameSecurityTokenProvider.cs
- XmlSchemaObjectCollection.cs
- ReliableMessagingHelpers.cs
- IntSecurity.cs
- SQLStringStorage.cs
- Configuration.cs
- ChtmlFormAdapter.cs
- FixedSOMTable.cs
- TabPage.cs
- UrlPath.cs
- IncomingWebRequestContext.cs
- CommandManager.cs
- FormViewDeleteEventArgs.cs
- UIElementAutomationPeer.cs
- FunctionImportMapping.ReturnTypeRenameMapping.cs
- SelectionEditor.cs
- GeometryGroup.cs
- SyntaxCheck.cs
- SecurityKeyIdentifierClause.cs
- OutputWindow.cs
- DependencyObject.cs
- AppModelKnownContentFactory.cs
- CaseStatement.cs
- WebPartMenuStyle.cs
- BookmarkList.cs
- _NegotiateClient.cs
- CompilerGlobalScopeAttribute.cs
- CounterSample.cs
- TemplateAction.cs
- NavigatorInput.cs
- CalendarAutoFormat.cs
- TypeForwardedToAttribute.cs
- SyndicationElementExtension.cs
- SqlMethodAttribute.cs
- MarkedHighlightComponent.cs
- FontConverter.cs
- ByteRangeDownloader.cs
- ErrorProvider.cs
- EntityViewGenerator.cs
- PrintPreviewControl.cs
- Binding.cs
- Int64.cs
- CellLabel.cs
- IxmlLineInfo.cs
- WindowsFormsSectionHandler.cs
- OleDbPermission.cs
- EditableRegion.cs
- HyperLink.cs
- XamlStream.cs
- SpotLight.cs
- ProfileService.cs
- KeyNotFoundException.cs
- EventData.cs
- EntityDataSourceDataSelection.cs
- SponsorHelper.cs
- SortDescription.cs
- HttpRequest.cs
- ComAwareEventInfo.cs
- HwndKeyboardInputProvider.cs
- CssStyleCollection.cs
- WindowsToolbarAsMenu.cs
- CodeSubDirectoriesCollection.cs
- ScaleTransform.cs
- NotifyInputEventArgs.cs
- ConditionalAttribute.cs
- EncoderBestFitFallback.cs
- LineServices.cs
- Msec.cs
- SoapElementAttribute.cs
- WindowsIdentity.cs
- SqlComparer.cs
- PngBitmapEncoder.cs
- GeneralTransform3DTo2D.cs
- XpsFixedDocumentSequenceReaderWriter.cs
- GrammarBuilderDictation.cs
- PropertyDescriptorCollection.cs
- PathFigure.cs
- LabelAutomationPeer.cs
- ModulesEntry.cs
- PersonalizationStateQuery.cs
- KoreanLunisolarCalendar.cs
- CrossContextChannel.cs
- BindValidationContext.cs
- BaseProcessProtocolHandler.cs
- PerspectiveCamera.cs
- DrawingImage.cs
- WebPartDisplayMode.cs
- DeobfuscatingStream.cs
- XmlUTF8TextReader.cs
- ExpressionVisitor.cs
- StringFormat.cs