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
- DrawingVisual.cs
- CommonRemoteMemoryBlock.cs
- DataRowExtensions.cs
- WebConfigurationHost.cs
- Regex.cs
- ImmutableObjectAttribute.cs
- ReadWriteObjectLock.cs
- VisualTreeHelper.cs
- Block.cs
- XmlSchemaCompilationSettings.cs
- XsdCachingReader.cs
- DispatcherObject.cs
- WindowsContainer.cs
- InvokeHandlers.cs
- GridEntry.cs
- TextServicesCompartmentEventSink.cs
- GridViewColumn.cs
- ReadOnlyHierarchicalDataSource.cs
- TransportReplyChannelAcceptor.cs
- EnvelopedPkcs7.cs
- SchemaInfo.cs
- SHA1CryptoServiceProvider.cs
- EditorPartChrome.cs
- GroupQuery.cs
- XmlILCommand.cs
- XmlSchemaSequence.cs
- ObjectDataSourceView.cs
- PolyLineSegment.cs
- Journal.cs
- HttpModuleAction.cs
- SourceLineInfo.cs
- AssemblyAttributes.cs
- SpecialTypeDataContract.cs
- Fx.cs
- TagPrefixCollection.cs
- NaturalLanguageHyphenator.cs
- WindowsMenu.cs
- GenericWebPart.cs
- LineBreakRecord.cs
- AppDomainFactory.cs
- SequenceDesigner.cs
- SqlFacetAttribute.cs
- DbCommandDefinition.cs
- latinshape.cs
- NetworkInformationException.cs
- HtmlGenericControl.cs
- IMembershipProvider.cs
- SchemaElementDecl.cs
- DataGridCell.cs
- GradientStop.cs
- TreeBuilderBamlTranslator.cs
- SerializerDescriptor.cs
- RowsCopiedEventArgs.cs
- Path.cs
- ReturnValue.cs
- TemplateEditingVerb.cs
- DataListItemEventArgs.cs
- ProxyAttribute.cs
- ImagingCache.cs
- UiaCoreTypesApi.cs
- MemberRelationshipService.cs
- PerfCounters.cs
- DataServiceRequest.cs
- EndpointConfigContainer.cs
- UInt16.cs
- OracleInternalConnection.cs
- CoTaskMemHandle.cs
- FocusTracker.cs
- LinkedResource.cs
- AppDomainManager.cs
- LayoutEvent.cs
- FixedSOMLineCollection.cs
- ProcessHostServerConfig.cs
- WindowsListViewGroup.cs
- ellipse.cs
- CodeDirectoryCompiler.cs
- UnSafeCharBuffer.cs
- RegularExpressionValidator.cs
- ServiceReference.cs
- InsufficientMemoryException.cs
- SqlClientWrapperSmiStream.cs
- SessionConnectionReader.cs
- ClrProviderManifest.cs
- D3DImage.cs
- DefaultClaimSet.cs
- HostSecurityManager.cs
- UnsafeNativeMethods.cs
- PassportAuthentication.cs
- DrawListViewItemEventArgs.cs
- StringTraceRecord.cs
- RawStylusActions.cs
- CompilationRelaxations.cs
- EntitySqlException.cs
- DataColumnChangeEvent.cs
- SessionStateModule.cs
- NavigationWindowAutomationPeer.cs
- BaseCodeDomTreeGenerator.cs
- UserMapPath.cs
- PreviewPageInfo.cs
- DebugView.cs