Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / QueryContinueDragEvent.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- MenuCommand.cs
- FormatterServices.cs
- ScrollContentPresenter.cs
- DynamicDocumentPaginator.cs
- Vector3DValueSerializer.cs
- Compiler.cs
- MediaElementAutomationPeer.cs
- webclient.cs
- XmlBinaryReader.cs
- EntityCollection.cs
- LoggedException.cs
- MobileListItemCollection.cs
- RtfToken.cs
- RangeContentEnumerator.cs
- DescendentsWalker.cs
- DesignBindingValueUIHandler.cs
- MimeMapping.cs
- IconConverter.cs
- DbQueryCommandTree.cs
- X509Certificate.cs
- MethodToken.cs
- SafeLibraryHandle.cs
- UnitySerializationHolder.cs
- BuilderInfo.cs
- GridViewEditEventArgs.cs
- GPPOINTF.cs
- PseudoWebRequest.cs
- LingerOption.cs
- BorderGapMaskConverter.cs
- RealizationContext.cs
- MinMaxParagraphWidth.cs
- BinaryConverter.cs
- AsyncCompletedEventArgs.cs
- RelationshipType.cs
- ConnectionStringSettings.cs
- AnnotationHelper.cs
- _FixedSizeReader.cs
- glyphs.cs
- ScrollProperties.cs
- __ComObject.cs
- EditableRegion.cs
- ScrollableControl.cs
- Util.cs
- MsmqTransportSecurityElement.cs
- ConnectionPoolRegistry.cs
- KeyTime.cs
- TempFiles.cs
- RadioButton.cs
- InvokeProviderWrapper.cs
- EventWaitHandleSecurity.cs
- DataSetMappper.cs
- DataObjectMethodAttribute.cs
- ListBindableAttribute.cs
- BitmapEffectDrawingContent.cs
- XmlNavigatorFilter.cs
- StrokeCollectionConverter.cs
- HtmlTableRow.cs
- SqlConnection.cs
- XmlNodeReader.cs
- KeyboardEventArgs.cs
- WaitHandleCannotBeOpenedException.cs
- XmlWrappingReader.cs
- WizardPanel.cs
- Deflater.cs
- InkCanvasAutomationPeer.cs
- MetadataPropertyCollection.cs
- WaitingCursor.cs
- TemplateKeyConverter.cs
- CategoryValueConverter.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- ParseElement.cs
- ConnectionPoolManager.cs
- FieldNameLookup.cs
- BrowserCapabilitiesFactory35.cs
- VersionedStream.cs
- Monitor.cs
- ConnectionStringSettingsCollection.cs
- HwndHost.cs
- ItemCheckEvent.cs
- Size.cs
- InkCanvasSelectionAdorner.cs
- ReferentialConstraint.cs
- HtmlShim.cs
- URIFormatException.cs
- ListManagerBindingsCollection.cs
- BitmapVisualManager.cs
- RewritingPass.cs
- ListBindingConverter.cs
- CommandHelper.cs
- DataSourceDescriptorCollection.cs
- TableLayoutStyle.cs
- WindowsSysHeader.cs
- ValueTypeFixupInfo.cs
- brushes.cs
- EntityProviderFactory.cs
- EntityDataSourceEntitySetNameItem.cs
- Convert.cs
- MemoryStream.cs
- Util.cs
- InputScope.cs