Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / Controls / Primitives / DragCompletedEventArgs.cs / 1 / DragCompletedEventArgs.cs
using System; using System.Windows.Controls; using System.Windows; namespace System.Windows.Controls.Primitives { ////// This DragCompletedEventArgs class contains additional information about the /// DragCompleted event. /// ////// public class DragCompletedEventArgs: RoutedEventArgs { /// /// This is an instance constructor for the DragCompletedEventArgs class. It /// is constructed with a reference to the event being raised. /// ///Nothing. public DragCompletedEventArgs(double horizontalChange, double verticalChange, bool canceled) : base() { _horizontalChange = horizontalChange; _verticalChange = verticalChange; _wasCanceled = canceled; RoutedEvent=Thumb.DragCompletedEvent; } ////// Read-only access to the horizontal distance between the point where mouse's left-button /// was pressed and the point where mouse's left-button was released /// public double HorizontalChange { get { return _horizontalChange; } } ////// Read-only access to the vertical distance between the point where mouse's left-button /// was pressed and the point where mouse's left-button was released /// public double VerticalChange { get { return _verticalChange; } } ////// Read-only access to boolean states whether the drag operation was canceled or not. /// ///public bool Canceled { get { return _wasCanceled; } } /// /// This method is used to perform the proper type casting in order to /// call the type-safe DragCompletedEventHandler delegate for the DragCompletedEvent event. /// /// The handler to invoke. /// The current object along the event's route. ///Nothing. ////// protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { DragCompletedEventHandler handler = (DragCompletedEventHandler)genericHandler; handler(genericTarget, this); } private double _horizontalChange; private double _verticalChange; private bool _wasCanceled; } /// /// This delegate must used by handlers of the DragCompleted event. /// /// The current element along the event's route. /// The event arguments containing additional information about the event. ///Nothing. public delegate void DragCompletedEventHandler(object sender, DragCompletedEventArgs e); } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Windows.Controls; using System.Windows; namespace System.Windows.Controls.Primitives { ////// This DragCompletedEventArgs class contains additional information about the /// DragCompleted event. /// ////// public class DragCompletedEventArgs: RoutedEventArgs { /// /// This is an instance constructor for the DragCompletedEventArgs class. It /// is constructed with a reference to the event being raised. /// ///Nothing. public DragCompletedEventArgs(double horizontalChange, double verticalChange, bool canceled) : base() { _horizontalChange = horizontalChange; _verticalChange = verticalChange; _wasCanceled = canceled; RoutedEvent=Thumb.DragCompletedEvent; } ////// Read-only access to the horizontal distance between the point where mouse's left-button /// was pressed and the point where mouse's left-button was released /// public double HorizontalChange { get { return _horizontalChange; } } ////// Read-only access to the vertical distance between the point where mouse's left-button /// was pressed and the point where mouse's left-button was released /// public double VerticalChange { get { return _verticalChange; } } ////// Read-only access to boolean states whether the drag operation was canceled or not. /// ///public bool Canceled { get { return _wasCanceled; } } /// /// This method is used to perform the proper type casting in order to /// call the type-safe DragCompletedEventHandler delegate for the DragCompletedEvent event. /// /// The handler to invoke. /// The current object along the event's route. ///Nothing. ////// protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { DragCompletedEventHandler handler = (DragCompletedEventHandler)genericHandler; handler(genericTarget, this); } private double _horizontalChange; private double _verticalChange; private bool _wasCanceled; } /// /// This delegate must used by handlers of the DragCompleted event. /// /// The current element along the event's route. /// The event arguments containing additional information about the event. ///Nothing. public delegate void DragCompletedEventHandler(object sender, DragCompletedEventArgs e); } // 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
- DateTimeConverter2.cs
- DateBoldEvent.cs
- MetadataHelper.cs
- ExpressionEditorAttribute.cs
- DBDataPermission.cs
- InputLangChangeEvent.cs
- XmlValidatingReaderImpl.cs
- Helper.cs
- CharEntityEncoderFallback.cs
- LogWriteRestartAreaState.cs
- VectorAnimation.cs
- TemplateXamlParser.cs
- DirectionalLight.cs
- ImageConverter.cs
- PriorityChain.cs
- HtmlInputHidden.cs
- DataKey.cs
- ReadOnlyDictionary.cs
- SafeLocalAllocation.cs
- DependencyProperty.cs
- FileDialog.cs
- CachedPathData.cs
- BaseComponentEditor.cs
- ToolStripLabel.cs
- FontSource.cs
- CloseCollectionAsyncResult.cs
- NetCodeGroup.cs
- GeneralTransformGroup.cs
- Button.cs
- ISessionStateStore.cs
- FrameworkElement.cs
- Operator.cs
- TextModifierScope.cs
- FixedLineResult.cs
- MetaModel.cs
- SwitchLevelAttribute.cs
- UnsafeNativeMethodsPenimc.cs
- DataGridHeaderBorder.cs
- OutputCacheProfile.cs
- WebConfigurationHost.cs
- InsufficientMemoryException.cs
- FixedPageAutomationPeer.cs
- XmlLanguageConverter.cs
- httpapplicationstate.cs
- ServiceHostingEnvironment.cs
- RightsManagementEncryptedStream.cs
- ClientUrlResolverWrapper.cs
- GlyphRunDrawing.cs
- IssuedTokenClientCredential.cs
- WebPart.cs
- ConnectionManagementSection.cs
- GlobalAllocSafeHandle.cs
- MenuItemBinding.cs
- OrderedDictionary.cs
- __ConsoleStream.cs
- DataRelationCollection.cs
- RectAnimationBase.cs
- invalidudtexception.cs
- WindowsSolidBrush.cs
- GeneratedCodeAttribute.cs
- SimpleHandlerBuildProvider.cs
- DbException.cs
- SafeNativeMethods.cs
- StorageBasedPackageProperties.cs
- ContentHostHelper.cs
- TCEAdapterGenerator.cs
- ClientViaElement.cs
- MasterPageBuildProvider.cs
- NameSpaceEvent.cs
- InternalCache.cs
- XmlUtil.cs
- XmlSchemaGroup.cs
- TypefaceMap.cs
- DataGridViewRowPrePaintEventArgs.cs
- RegexMatchCollection.cs
- GridViewRowEventArgs.cs
- ErrorStyle.cs
- SoapParser.cs
- TTSVoice.cs
- ThrowOnMultipleAssignment.cs
- ISSmlParser.cs
- DescriptionAttribute.cs
- EdmProperty.cs
- PropertyEmitterBase.cs
- FileStream.cs
- NominalTypeEliminator.cs
- MaskInputRejectedEventArgs.cs
- SchemaMerger.cs
- AttachmentCollection.cs
- FrugalList.cs
- FormView.cs
- Nullable.cs
- XmlNodeChangedEventManager.cs
- StoryFragments.cs
- Pool.cs
- Classification.cs
- BaseParagraph.cs
- KeyFrames.cs
- TransformDescriptor.cs
- ThumbButtonInfoCollection.cs