Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- dbenumerator.cs
- EpmContentSerializer.cs
- ObjectDataSourceEventArgs.cs
- ClientProxyGenerator.cs
- PeerCollaborationPermission.cs
- CultureTable.cs
- _emptywebproxy.cs
- XXXInfos.cs
- EventlogProvider.cs
- CustomPopupPlacement.cs
- BamlBinaryReader.cs
- OdbcFactory.cs
- SpnEndpointIdentity.cs
- HMACSHA512.cs
- QueryIntervalOp.cs
- ManipulationVelocities.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- BlockUIContainer.cs
- NTAccount.cs
- MenuEventArgs.cs
- ComEventsMethod.cs
- CodeRemoveEventStatement.cs
- StateWorkerRequest.cs
- HttpModuleActionCollection.cs
- ISAPIWorkerRequest.cs
- Knowncolors.cs
- LogStream.cs
- RootBrowserWindow.cs
- InteropAutomationProvider.cs
- GenerateScriptTypeAttribute.cs
- EntityContainerAssociationSet.cs
- StubHelpers.cs
- CardSpacePolicyElement.cs
- Rotation3DAnimationBase.cs
- TextRange.cs
- ByteKeyFrameCollection.cs
- ExplicitDiscriminatorMap.cs
- HtmlGenericControl.cs
- EventLogTraceListener.cs
- MorphHelpers.cs
- NameScope.cs
- CornerRadiusConverter.cs
- SqlMethodAttribute.cs
- HttpMethodConstraint.cs
- HtmlDocument.cs
- EventMetadata.cs
- localization.cs
- OracleParameter.cs
- NullableDoubleMinMaxAggregationOperator.cs
- GridSplitter.cs
- FormViewDeleteEventArgs.cs
- HttpApplicationFactory.cs
- SystemGatewayIPAddressInformation.cs
- PropagatorResult.cs
- NavigatingCancelEventArgs.cs
- BitStream.cs
- WizardForm.cs
- ClientApiGenerator.cs
- AnimationTimeline.cs
- StatementContext.cs
- XmlILTrace.cs
- ToolStripRendererSwitcher.cs
- EllipseGeometry.cs
- XmlSchemaType.cs
- SettingsPropertyWrongTypeException.cs
- ValidationSummaryDesigner.cs
- HttpResponseHeader.cs
- XmlEncoding.cs
- XPathSelfQuery.cs
- DtcInterfaces.cs
- FontFamilyConverter.cs
- RequestResponse.cs
- WebPartConnectionsCloseVerb.cs
- X509ClientCertificateAuthentication.cs
- BufferAllocator.cs
- ElementAction.cs
- BoundPropertyEntry.cs
- ComboBoxAutomationPeer.cs
- path.cs
- BitmapFrame.cs
- DataGridViewCheckBoxCell.cs
- TextProperties.cs
- EdmToObjectNamespaceMap.cs
- DataGridSortCommandEventArgs.cs
- ContainsRowNumberChecker.cs
- SqlLiftWhereClauses.cs
- CapabilitiesState.cs
- _Connection.cs
- XpsS0ValidatingLoader.cs
- mediaeventshelper.cs
- MasterPage.cs
- SpeechAudioFormatInfo.cs
- Image.cs
- ResourceContainer.cs
- QilTypeChecker.cs
- LiteralControl.cs
- CLSCompliantAttribute.cs
- PointAnimationUsingKeyFrames.cs
- SolidColorBrush.cs
- DataPagerCommandEventArgs.cs