Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / QueryContinueDragEventArgs.cs / 1 / QueryContinueDragEventArgs.cs
//---------------------------------------------------------------------------- // // File: QueryContinueDragEventArgs.cs // // Copyright (C) Microsoft Corporation. All rights reserved. // // Description: QueryContinueDragEventArgs for drag-and-drop operation. // // History: // 08/19/2004 : sangilj Created // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows { ////// The QueryContinueDragEventArgs class represents a type of RoutedEventArgs that /// are relevant to QueryContinueDrag event. /// public sealed class QueryContinueDragEventArgs : RoutedEventArgs { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Initializes a new instance of the QueryContinueDragEventArgs class. /// /// /// Escape key was pressed. /// /// /// Input states. /// internal QueryContinueDragEventArgs(bool escapePressed, DragDropKeyStates dragDropKeyStates) { if (!DragDrop.IsValidDragDropKeyStates(dragDropKeyStates)) { Debug.Assert(false, "Invalid dragDropKeyStates"); } this._escapePressed = escapePressed; this._dragDropKeyStates = dragDropKeyStates; } #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Escape key was pressed. /// public bool EscapePressed { get { return _escapePressed; } } ////// The DragDropKeyStates that indicates the current states for /// physical keyboard keys and mouse buttons. /// public DragDropKeyStates KeyStates { get {return _dragDropKeyStates;} } ////// The action of drag operation /// public DragAction Action { get { return _action; } set { if (!DragDrop.IsValidDragAction(value)) { throw new ArgumentException(SR.Get(SRID.DragDrop_DragActionInvalid, "value")); } _action = value; } } #endregion Public Methods #region Protected Methods //------------------------------------------------------ // // Protected Methods // //------------------------------------------------------ ////// The mechanism used to call the type-specific handler on the target. /// /// /// The generic handler to call in a type-specific way. /// /// /// The target to call the handler on. /// protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { QueryContinueDragEventHandler handler = (QueryContinueDragEventHandler)genericHandler; handler(genericTarget, this); } #endregion Protected Methods //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #region Private Fields private bool _escapePressed; private DragDropKeyStates _dragDropKeyStates; private DragAction _action; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // File: QueryContinueDragEventArgs.cs // // Copyright (C) Microsoft Corporation. All rights reserved. // // Description: QueryContinueDragEventArgs for drag-and-drop operation. // // History: // 08/19/2004 : sangilj Created // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows { ////// The QueryContinueDragEventArgs class represents a type of RoutedEventArgs that /// are relevant to QueryContinueDrag event. /// public sealed class QueryContinueDragEventArgs : RoutedEventArgs { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors ////// Initializes a new instance of the QueryContinueDragEventArgs class. /// /// /// Escape key was pressed. /// /// /// Input states. /// internal QueryContinueDragEventArgs(bool escapePressed, DragDropKeyStates dragDropKeyStates) { if (!DragDrop.IsValidDragDropKeyStates(dragDropKeyStates)) { Debug.Assert(false, "Invalid dragDropKeyStates"); } this._escapePressed = escapePressed; this._dragDropKeyStates = dragDropKeyStates; } #endregion Constructors //------------------------------------------------------ // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Escape key was pressed. /// public bool EscapePressed { get { return _escapePressed; } } ////// The DragDropKeyStates that indicates the current states for /// physical keyboard keys and mouse buttons. /// public DragDropKeyStates KeyStates { get {return _dragDropKeyStates;} } ////// The action of drag operation /// public DragAction Action { get { return _action; } set { if (!DragDrop.IsValidDragAction(value)) { throw new ArgumentException(SR.Get(SRID.DragDrop_DragActionInvalid, "value")); } _action = value; } } #endregion Public Methods #region Protected Methods //------------------------------------------------------ // // Protected Methods // //------------------------------------------------------ ////// The mechanism used to call the type-specific handler on the target. /// /// /// The generic handler to call in a type-specific way. /// /// /// The target to call the handler on. /// protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { QueryContinueDragEventHandler handler = (QueryContinueDragEventHandler)genericHandler; handler(genericTarget, this); } #endregion Protected Methods //----------------------------------------------------- // // Private Fields // //------------------------------------------------------ #region Private Fields private bool _escapePressed; private DragDropKeyStates _dragDropKeyStates; private DragAction _action; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ComponentRenameEvent.cs
- Root.cs
- SettingsProperty.cs
- GenericArgumentsUpdater.cs
- MemoryStream.cs
- SHA384Managed.cs
- DelegateSerializationHolder.cs
- LocalizableAttribute.cs
- ProfileService.cs
- GlobalEventManager.cs
- SspiHelper.cs
- CombinedGeometry.cs
- CompositeActivityTypeDescriptorProvider.cs
- DataDocumentXPathNavigator.cs
- DataList.cs
- LiteralTextParser.cs
- DataGridViewCellMouseEventArgs.cs
- RawStylusSystemGestureInputReport.cs
- DetailsViewCommandEventArgs.cs
- X509Utils.cs
- PathFigure.cs
- basenumberconverter.cs
- DataGridViewElement.cs
- serverconfig.cs
- XmlText.cs
- XmlSignatureProperties.cs
- XmlSchemaGroup.cs
- CodeIterationStatement.cs
- basenumberconverter.cs
- DataException.cs
- FixedSOMPage.cs
- BaseTreeIterator.cs
- DocumentEventArgs.cs
- EntityCollectionChangedParams.cs
- DataServiceRequestException.cs
- SspiSafeHandles.cs
- ExpressionBinding.cs
- SQLInt16.cs
- HTMLTagNameToTypeMapper.cs
- xmlglyphRunInfo.cs
- Registry.cs
- Encoding.cs
- CompiledQuery.cs
- DateTimeConstantAttribute.cs
- TreeNodeMouseHoverEvent.cs
- GridProviderWrapper.cs
- HttpHandler.cs
- FlowNode.cs
- DateRangeEvent.cs
- ViewBase.cs
- MeasureData.cs
- NonBatchDirectoryCompiler.cs
- RichTextBox.cs
- SortKey.cs
- Registry.cs
- AsyncPostBackTrigger.cs
- WhitespaceRule.cs
- XmlNodeComparer.cs
- WebContext.cs
- DbException.cs
- RepeaterItemCollection.cs
- DispatcherFrame.cs
- XamlParser.cs
- HtmlUtf8RawTextWriter.cs
- XmlSchemaException.cs
- AlphabeticalEnumConverter.cs
- FixedStringLookup.cs
- dtdvalidator.cs
- ImageAutomationPeer.cs
- CannotUnloadAppDomainException.cs
- FileUtil.cs
- EnumValidator.cs
- DetailsView.cs
- CompilerTypeWithParams.cs
- PageRanges.cs
- OleDbRowUpdatingEvent.cs
- FormsAuthenticationUser.cs
- HostingEnvironment.cs
- BatchStream.cs
- ConfigurationValues.cs
- FileSystemInfo.cs
- SafeRightsManagementQueryHandle.cs
- InputScopeConverter.cs
- DbConnectionFactory.cs
- XmlSecureResolver.cs
- CustomError.cs
- HtmlUtf8RawTextWriter.cs
- BasicBrowserDialog.cs
- SelectionBorderGlyph.cs
- SqlCommand.cs
- DataRow.cs
- TableItemProviderWrapper.cs
- Fonts.cs
- FrameworkRichTextComposition.cs
- ConfigurationValidatorAttribute.cs
- cache.cs
- StrongName.cs
- OdbcStatementHandle.cs
- SQLString.cs
- WindowsEditBoxRange.cs