Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- OutputCacheProfileCollection.cs
- PolicyValidationException.cs
- Decimal.cs
- FormsAuthenticationModule.cs
- SqlDataSourceSelectingEventArgs.cs
- WindowsGraphics.cs
- HttpAsyncResult.cs
- DLinqTableProvider.cs
- PackageFilter.cs
- SessionStateItemCollection.cs
- SmiGettersStream.cs
- IndexOutOfRangeException.cs
- ComponentSerializationService.cs
- PasswordRecoveryDesigner.cs
- CounterSetInstance.cs
- FacetDescriptionElement.cs
- PerformanceCounterPermissionAttribute.cs
- ToolStripContainer.cs
- StorageModelBuildProvider.cs
- ResXFileRef.cs
- CodeEntryPointMethod.cs
- WorkflowRuntimeService.cs
- UpdateCommand.cs
- IIS7WorkerRequest.cs
- BindingElementCollection.cs
- WebPermission.cs
- Transform3DGroup.cs
- SqlPersonalizationProvider.cs
- SkewTransform.cs
- WsrmTraceRecord.cs
- HostedTransportConfigurationManager.cs
- ShaderEffect.cs
- mediaeventshelper.cs
- SHA512.cs
- HtmlProps.cs
- FormViewInsertedEventArgs.cs
- ConfigXmlElement.cs
- ExpressionTable.cs
- Decorator.cs
- ConfigurationPermission.cs
- OletxTransactionFormatter.cs
- LockedAssemblyCache.cs
- WebFormDesignerActionService.cs
- SiteMapNodeCollection.cs
- DesignTable.cs
- SHA512Managed.cs
- StyleBamlTreeBuilder.cs
- ConfigXmlAttribute.cs
- QueryOperationResponseOfT.cs
- IgnorePropertiesAttribute.cs
- BitmapImage.cs
- BindingValueChangedEventArgs.cs
- HttpListenerPrefixCollection.cs
- ToolBarPanel.cs
- SizeAnimation.cs
- VisualStateChangedEventArgs.cs
- RotateTransform3D.cs
- DoubleCollection.cs
- XmlSchemaComplexContentExtension.cs
- GridViewSortEventArgs.cs
- ExceptionHandlerDesigner.cs
- WinInetCache.cs
- TypedColumnHandler.cs
- ZipIOExtraFieldPaddingElement.cs
- ClientRolePrincipal.cs
- GifBitmapDecoder.cs
- DocumentCollection.cs
- AppendHelper.cs
- ListControl.cs
- ConstNode.cs
- TableDesigner.cs
- TimeoutStream.cs
- SQLGuidStorage.cs
- ImmutableClientRuntime.cs
- DecoratedNameAttribute.cs
- UxThemeWrapper.cs
- FileAuthorizationModule.cs
- BasicExpandProvider.cs
- Binding.cs
- DocumentCollection.cs
- QuaternionRotation3D.cs
- LinkTarget.cs
- TextParagraphView.cs
- ReadOnlyTernaryTree.cs
- CustomAttribute.cs
- FormsAuthenticationConfiguration.cs
- WindowsButton.cs
- MasterPageCodeDomTreeGenerator.cs
- HttpPostedFile.cs
- XmlSchemaFacet.cs
- SHA256CryptoServiceProvider.cs
- OutputCacheSettingsSection.cs
- XmlSchemaInclude.cs
- DataGridViewColumnCollection.cs
- Assign.cs
- MissingManifestResourceException.cs
- regiisutil.cs
- WebDescriptionAttribute.cs
- BackgroundFormatInfo.cs
- WebPartConnectionsCancelVerb.cs