Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / Primitives / DragCompletedEventArgs.cs / 1305600 / 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
- WindowsHyperlink.cs
- WebPartZoneCollection.cs
- XamlUtilities.cs
- RadioButtonList.cs
- XmlNodeReader.cs
- CodeFieldReferenceExpression.cs
- SourceLocation.cs
- FaultFormatter.cs
- PropertyDescriptorComparer.cs
- TextDecorationCollection.cs
- SerializerProvider.cs
- OutputCacheProfileCollection.cs
- Privilege.cs
- RegexInterpreter.cs
- PresentationTraceSources.cs
- SecUtil.cs
- BufferedReceiveElement.cs
- FloaterParagraph.cs
- CharEnumerator.cs
- BitmapDownload.cs
- SqlCharStream.cs
- ToolStripEditorManager.cs
- TimersDescriptionAttribute.cs
- DesignerActionItemCollection.cs
- PeerNameResolver.cs
- CatalogZoneBase.cs
- ManagementScope.cs
- TemplatePagerField.cs
- ChangesetResponse.cs
- BitmapFrameEncode.cs
- DescriptionAttribute.cs
- ComplexLine.cs
- xmlglyphRunInfo.cs
- DataGridViewCellValueEventArgs.cs
- EntityTypeBase.cs
- NamedPipeAppDomainProtocolHandler.cs
- ControlsConfig.cs
- NavigateEvent.cs
- RawTextInputReport.cs
- JsonXmlDataContract.cs
- CompositeCollectionView.cs
- UnsafeNativeMethodsPenimc.cs
- versioninfo.cs
- QilBinary.cs
- SessionStateContainer.cs
- UnsupportedPolicyOptionsException.cs
- VarInfo.cs
- GeneralTransform2DTo3DTo2D.cs
- OdbcInfoMessageEvent.cs
- DataGridViewCellStyleEditor.cs
- SearchExpression.cs
- AppearanceEditorPart.cs
- ComPersistableTypeElementCollection.cs
- TextElementCollectionHelper.cs
- CryptoProvider.cs
- StoreContentChangedEventArgs.cs
- ActivityCodeDomSerializer.cs
- BaseTemplateParser.cs
- ListSourceHelper.cs
- BinaryParser.cs
- RadioButtonStandardAdapter.cs
- XmlSchemaElement.cs
- IisTraceWebEventProvider.cs
- MailSettingsSection.cs
- ClientConfigurationHost.cs
- EdmValidator.cs
- BidPrivateBase.cs
- NavigationProperty.cs
- PassportPrincipal.cs
- IOException.cs
- WorkflowQueuingService.cs
- SimpleType.cs
- MyContact.cs
- ApplicationActivator.cs
- SafePEFileHandle.cs
- CodeArrayIndexerExpression.cs
- MSG.cs
- CodePageUtils.cs
- OracleString.cs
- CollectionExtensions.cs
- HttpValueCollection.cs
- ContainerUIElement3D.cs
- FigureParaClient.cs
- WebControlsSection.cs
- ProxyAttribute.cs
- NoResizeSelectionBorderGlyph.cs
- UshortList2.cs
- FontStyles.cs
- BindingCompleteEventArgs.cs
- SystemMulticastIPAddressInformation.cs
- Image.cs
- FlowPosition.cs
- FontStretchConverter.cs
- DataBoundControl.cs
- LeafCellTreeNode.cs
- Stroke2.cs
- TableRowsCollectionEditor.cs
- QueryConverter.cs
- BaseParagraph.cs
- AppSettingsSection.cs