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
- ErrorTableItemStyle.cs
- DbConnectionStringCommon.cs
- XmlValidatingReaderImpl.cs
- IssuanceTokenProviderState.cs
- XmlName.cs
- WpfWebRequestHelper.cs
- Int32RectValueSerializer.cs
- WindowsEditBoxRange.cs
- MemberRelationshipService.cs
- PersonalizationAdministration.cs
- InProcStateClientManager.cs
- FormsIdentity.cs
- SlipBehavior.cs
- XmlNullResolver.cs
- HttpCacheVaryByContentEncodings.cs
- SemaphoreFullException.cs
- OdbcError.cs
- Nullable.cs
- ListViewContainer.cs
- TextEditorContextMenu.cs
- DesignerAutoFormat.cs
- ContextStaticAttribute.cs
- CalendarDesigner.cs
- ContentIterators.cs
- FlowDocumentFormatter.cs
- ContractMapping.cs
- ColorContextHelper.cs
- GCHandleCookieTable.cs
- GenericRootAutomationPeer.cs
- SynchronizingStream.cs
- DBSqlParser.cs
- SortDescription.cs
- _DisconnectOverlappedAsyncResult.cs
- JapaneseCalendar.cs
- FileDataSourceCache.cs
- ConditionedDesigner.cs
- ListViewHitTestInfo.cs
- TransformConverter.cs
- WorkflowApplication.cs
- StickyNote.cs
- RemoteHelper.cs
- InfocardExtendedInformationEntry.cs
- ButtonField.cs
- EmptyStringExpandableObjectConverter.cs
- Message.cs
- GetIndexBinder.cs
- FormatException.cs
- MatrixConverter.cs
- SaveFileDialog.cs
- MarshalByValueComponent.cs
- RayHitTestParameters.cs
- SqlUserDefinedAggregateAttribute.cs
- ThemeableAttribute.cs
- DataControlPagerLinkButton.cs
- DesignerDataSchemaClass.cs
- DataServiceContext.cs
- TextDpi.cs
- BitmapEffectInput.cs
- FieldAccessException.cs
- MimePart.cs
- DetailsViewUpdatedEventArgs.cs
- ChangeConflicts.cs
- XmlSchemaInfo.cs
- PageThemeCodeDomTreeGenerator.cs
- GridEntryCollection.cs
- ZipIOFileItemStream.cs
- NodeLabelEditEvent.cs
- DataGridPagingPage.cs
- PackageDigitalSignatureManager.cs
- OracleSqlParser.cs
- UnsignedPublishLicense.cs
- Context.cs
- COMException.cs
- CardSpacePolicyElement.cs
- ConfigXmlElement.cs
- OleDbConnectionInternal.cs
- ObjectSecurity.cs
- LinqDataSourceInsertEventArgs.cs
- LongValidator.cs
- WindowsSolidBrush.cs
- PassportAuthentication.cs
- httpapplicationstate.cs
- ClientConfigPaths.cs
- EnumConverter.cs
- BinaryReader.cs
- ExpressionBuilderCollection.cs
- OleDbRowUpdatedEvent.cs
- ScrollChrome.cs
- ElementAction.cs
- _emptywebproxy.cs
- WindowsAuthenticationEventArgs.cs
- Privilege.cs
- EventSinkHelperWriter.cs
- AnchorEditor.cs
- XamlStream.cs
- DataGridViewAccessibleObject.cs
- SQLRoleProvider.cs
- SortFieldComparer.cs
- ClientData.cs
- _ContextAwareResult.cs