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
- SQlBooleanStorage.cs
- DesignerAttribute.cs
- CompositeFontInfo.cs
- PermissionSetEnumerator.cs
- Item.cs
- TableSectionStyle.cs
- VerificationAttribute.cs
- HandleInitializationContext.cs
- ToolStripScrollButton.cs
- WebPartMinimizeVerb.cs
- DoubleLinkListEnumerator.cs
- IndentTextWriter.cs
- XmlMtomWriter.cs
- ChtmlFormAdapter.cs
- InputLanguageCollection.cs
- PasswordDeriveBytes.cs
- Mouse.cs
- X509Certificate.cs
- WebPartCatalogCloseVerb.cs
- DropDownButton.cs
- hresults.cs
- CompiledAction.cs
- DotAtomReader.cs
- SecurityIdentifierConverter.cs
- SimpleBitVector32.cs
- DefaultPropertyAttribute.cs
- WindowsEditBox.cs
- CalendarTable.cs
- CollectionViewProxy.cs
- SoapHelper.cs
- Int32CAMarshaler.cs
- VsPropertyGrid.cs
- _HTTPDateParse.cs
- ToolboxItemFilterAttribute.cs
- ACE.cs
- XamlToRtfParser.cs
- DocumentReference.cs
- PassportPrincipal.cs
- QilParameter.cs
- ResolveRequestResponseAsyncResult.cs
- ClientSettings.cs
- securestring.cs
- MetaModel.cs
- DetailsViewDeletedEventArgs.cs
- SaveFileDialog.cs
- HMACSHA1.cs
- IDReferencePropertyAttribute.cs
- SingleSelectRootGridEntry.cs
- SoapInteropTypes.cs
- FileDialog_Vista.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- WebPartUserCapability.cs
- TargetParameterCountException.cs
- Blend.cs
- DataGridViewTopRowAccessibleObject.cs
- AmbientProperties.cs
- TransformProviderWrapper.cs
- GridViewCommandEventArgs.cs
- ToolStripSplitButton.cs
- TextRangeEditLists.cs
- BaseCodePageEncoding.cs
- SimpleWorkerRequest.cs
- FaultReason.cs
- RuntimeConfigurationRecord.cs
- Vector3DCollectionConverter.cs
- ModelTypeConverter.cs
- XPathNodeHelper.cs
- EntityDataSourceView.cs
- DeobfuscatingStream.cs
- EntitySetBase.cs
- WebHttpEndpointElement.cs
- RadioButtonList.cs
- xamlnodes.cs
- DataDocumentXPathNavigator.cs
- ScriptModule.cs
- DES.cs
- ViewValidator.cs
- RtfToXamlLexer.cs
- RemoteWebConfigurationHostStream.cs
- AuthStoreRoleProvider.cs
- SmiContext.cs
- SizeF.cs
- SendMailErrorEventArgs.cs
- WebPartConnectionCollection.cs
- _KerberosClient.cs
- DataGridViewComboBoxCell.cs
- OrderByQueryOptionExpression.cs
- Geometry.cs
- SymbolUsageManager.cs
- LinqDataSourceSelectEventArgs.cs
- SelectionPatternIdentifiers.cs
- XmlSchemaAppInfo.cs
- IdentityReference.cs
- SqlCommandBuilder.cs
- PreApplicationStartMethodAttribute.cs
- CommunicationObjectManager.cs
- RuleSettingsCollection.cs
- PersianCalendar.cs
- DeleteIndexBinder.cs
- CapabilitiesSection.cs