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
- WorkflowRuntimeService.cs
- FacetDescriptionElement.cs
- mactripleDES.cs
- ApplicationCommands.cs
- PixelFormatConverter.cs
- DesignerForm.cs
- XamlClipboardData.cs
- DialogResultConverter.cs
- CalendarDay.cs
- ScriptReferenceBase.cs
- ViewDesigner.cs
- XmlILStorageConverter.cs
- XmlIncludeAttribute.cs
- AuthenticationModuleElementCollection.cs
- PropertyDescriptor.cs
- DelegateHelpers.Generated.cs
- RuntimeHandles.cs
- FontFamilyConverter.cs
- ScrollEvent.cs
- DependencyPropertyKind.cs
- Calendar.cs
- RSAPKCS1SignatureFormatter.cs
- DocumentEventArgs.cs
- MobileListItem.cs
- BasicExpressionVisitor.cs
- ProcessingInstructionAction.cs
- TextRangeEditTables.cs
- SecurityKeyIdentifierClause.cs
- TextDecorationCollection.cs
- TabOrder.cs
- ContainsRowNumberChecker.cs
- ProjectionPruner.cs
- OracleConnectionFactory.cs
- ToolStripItemCollection.cs
- Converter.cs
- MasterPageParser.cs
- ReachPageContentSerializerAsync.cs
- PropertyRecord.cs
- SafeProcessHandle.cs
- glyphs.cs
- ListDictionary.cs
- ScriptMethodAttribute.cs
- HwndSourceKeyboardInputSite.cs
- TaiwanCalendar.cs
- DocumentReference.cs
- BevelBitmapEffect.cs
- ReadOnlyHierarchicalDataSource.cs
- BufferedReceiveElement.cs
- BitmapEffectInputConnector.cs
- PowerStatus.cs
- InvalidDataException.cs
- ViewCellSlot.cs
- NetWebProxyFinder.cs
- WinFormsSecurity.cs
- Site.cs
- TabletDeviceInfo.cs
- Int64.cs
- DataBindingList.cs
- EventLogLink.cs
- BamlLocalizabilityResolver.cs
- WorkflowDataContext.cs
- MeshGeometry3D.cs
- hwndwrapper.cs
- ChannelTokenTypeConverter.cs
- CFGGrammar.cs
- DbgCompiler.cs
- MarkupProperty.cs
- safesecurityhelperavalon.cs
- BindValidationContext.cs
- EditorPartDesigner.cs
- AsymmetricAlgorithm.cs
- CacheRequest.cs
- SqlExpander.cs
- EntityModelBuildProvider.cs
- MissingSatelliteAssemblyException.cs
- TableLayoutRowStyleCollection.cs
- RegexTree.cs
- GeneratedContractType.cs
- CannotUnloadAppDomainException.cs
- DataGridViewButtonCell.cs
- BufferModeSettings.cs
- Renderer.cs
- HwndSourceKeyboardInputSite.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- ObjectDataSourceEventArgs.cs
- StructuredTypeInfo.cs
- ConfigsHelper.cs
- BuildProvider.cs
- HttpException.cs
- sqlnorm.cs
- RenameRuleObjectDialog.cs
- AnnouncementSendsAsyncResult.cs
- externdll.cs
- UnmanagedMemoryStream.cs
- TypedTableBase.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- Publisher.cs
- ElapsedEventArgs.cs
- EndOfStreamException.cs
- DateTimeEditor.cs