Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / QueryContinueDragEvent.cs / 1305376 / QueryContinueDragEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System.Diagnostics; using System; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; ////// /// [System.Runtime.InteropServices.ComVisible(true)] public class QueryContinueDragEventArgs : EventArgs { private readonly int keyState; private readonly bool escapePressed; private DragAction action; ////// Provides data for the ////// event. /// /// /// public QueryContinueDragEventArgs(int keyState, bool escapePressed, DragAction action) { this.keyState = keyState; this.escapePressed = escapePressed; this.action = action; } ////// Initializes a new instance of the ///class. /// /// /// public int KeyState { get { return keyState; } } ////// Gets a value indicating /// the current state of the SHIFT, CTRL, and ALT keys. /// ////// /// public bool EscapePressed { get { return escapePressed; } } ////// Gets a value indicating whether the user pressed the ESC key. /// ////// /// public DragAction Action { get { return action; } set { action = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets /// or sets the status of a drag-and-drop operation. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlSchemaAppInfo.cs
- WebPartDisplayModeCancelEventArgs.cs
- WebBrowser.cs
- EndpointAddressProcessor.cs
- HttpCacheVary.cs
- URLAttribute.cs
- Brush.cs
- FrugalList.cs
- ParameterCollection.cs
- MatrixCamera.cs
- ZipIOExtraFieldElement.cs
- UrlAuthFailedErrorFormatter.cs
- AuthenticationConfig.cs
- QueryExpr.cs
- DebugView.cs
- DbProviderConfigurationHandler.cs
- SupportingTokenBindingElement.cs
- HandlerBase.cs
- ThreadStartException.cs
- GatewayIPAddressInformationCollection.cs
- RankException.cs
- WebDescriptionAttribute.cs
- FormsAuthenticationModule.cs
- DataTemplate.cs
- SafeArchiveContext.cs
- EventDriven.cs
- ButtonFieldBase.cs
- FormsAuthentication.cs
- Faults.cs
- ExplicitDiscriminatorMap.cs
- WsatConfiguration.cs
- VectorAnimation.cs
- TextSelectionHighlightLayer.cs
- OleAutBinder.cs
- TraceLevelStore.cs
- IdentitySection.cs
- RawStylusInputReport.cs
- ListItemCollection.cs
- XmlSchemaElement.cs
- Transform.cs
- WebConfigurationHostFileChange.cs
- ResXDataNode.cs
- CrossAppDomainChannel.cs
- CodeFieldReferenceExpression.cs
- HostingEnvironment.cs
- PeerNodeTraceRecord.cs
- SiteMapProvider.cs
- SimpleApplicationHost.cs
- HyperlinkAutomationPeer.cs
- PropertyInfoSet.cs
- WpfWebRequestHelper.cs
- EmptyEnumerable.cs
- BaseEntityWrapper.cs
- EventDrivenDesigner.cs
- SqlCachedBuffer.cs
- Site.cs
- SmtpException.cs
- Peer.cs
- NamespaceQuery.cs
- SafeLibraryHandle.cs
- DataListItemCollection.cs
- ConnectionManagementSection.cs
- MarkupExtensionReturnTypeAttribute.cs
- DataGridItemAutomationPeer.cs
- WebEventTraceProvider.cs
- Matrix3DStack.cs
- IMembershipProvider.cs
- DynamicMethod.cs
- IndicShape.cs
- ToolboxSnapDragDropEventArgs.cs
- EntitySqlQueryCacheEntry.cs
- HitTestWithGeometryDrawingContextWalker.cs
- WebPartZoneAutoFormat.cs
- ZipFileInfo.cs
- DataGridViewRowPrePaintEventArgs.cs
- QueryRewriter.cs
- HttpCacheVary.cs
- SelectionItemPatternIdentifiers.cs
- TerminatorSinks.cs
- TransactionFlowElement.cs
- DataGridViewColumn.cs
- ActivityDesignerHighlighter.cs
- SslStream.cs
- CompositeScriptReference.cs
- ListDataHelper.cs
- ConfigurationLocation.cs
- DecimalConverter.cs
- TimeZone.cs
- HttpCapabilitiesEvaluator.cs
- ImageCodecInfoPrivate.cs
- BufferBuilder.cs
- ScriptReference.cs
- XMLSyntaxException.cs
- DictionaryManager.cs
- IntegerCollectionEditor.cs
- Lease.cs
- HttpCapabilitiesEvaluator.cs
- ReturnValue.cs
- SafeBitVector32.cs
- CodeGeneratorOptions.cs