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
- ExportOptions.cs
- WindowsFormsSectionHandler.cs
- MatchAllMessageFilter.cs
- BoolExpression.cs
- EntityKey.cs
- MatchAttribute.cs
- URLIdentityPermission.cs
- UnsafeNativeMethods.cs
- VideoDrawing.cs
- Inflater.cs
- FormClosedEvent.cs
- GridSplitterAutomationPeer.cs
- AspNetHostingPermission.cs
- WebPartMenu.cs
- ServiceHttpModule.cs
- DocumentOrderQuery.cs
- TypeDescriptionProvider.cs
- RootCodeDomSerializer.cs
- ScrollBarRenderer.cs
- CommandPlan.cs
- HyperLinkColumn.cs
- JavaScriptString.cs
- EmissiveMaterial.cs
- XmlElementAttribute.cs
- MdImport.cs
- HostingEnvironmentException.cs
- CompositeActivityCodeGenerator.cs
- AttributeAction.cs
- CacheManager.cs
- GridView.cs
- SelectorAutomationPeer.cs
- WorkflowServiceInstance.cs
- ErrorTolerantObjectWriter.cs
- CatalogZone.cs
- ContainerParagraph.cs
- LoadRetryStrategyFactory.cs
- RijndaelManaged.cs
- HtmlWindow.cs
- AsymmetricAlgorithm.cs
- SettingsBindableAttribute.cs
- RegexCode.cs
- FtpWebRequest.cs
- PropertyEmitterBase.cs
- TypeSystemHelpers.cs
- RangeExpression.cs
- ListViewDesigner.cs
- WSTrustDec2005.cs
- WsatAdminException.cs
- RectKeyFrameCollection.cs
- SelectedDatesCollection.cs
- RegexCompilationInfo.cs
- recordstate.cs
- SrgsToken.cs
- XmlSerializerFactory.cs
- StorageTypeMapping.cs
- PrintPreviewGraphics.cs
- TaskResultSetter.cs
- SchemaTableColumn.cs
- SafeLocalAllocation.cs
- SqlRetyper.cs
- PrintDocument.cs
- ViewStateModeByIdAttribute.cs
- ConnectionsZone.cs
- EncryptedData.cs
- WindowsIPAddress.cs
- IPAddress.cs
- RelationshipSet.cs
- PipelineModuleStepContainer.cs
- BookmarkScopeManager.cs
- TransportChannelFactory.cs
- OperandQuery.cs
- FontFamilyConverter.cs
- CompositeDuplexElement.cs
- StrokeFIndices.cs
- UInt32Storage.cs
- TypedTableBaseExtensions.cs
- Qualifier.cs
- RangeValuePattern.cs
- HtmlGenericControl.cs
- RegexNode.cs
- TdsParserSafeHandles.cs
- MonikerUtility.cs
- TimeStampChecker.cs
- HtmlInputPassword.cs
- RootBuilder.cs
- FormsAuthenticationConfiguration.cs
- OleDbInfoMessageEvent.cs
- WinFormsComponentEditor.cs
- ScrollProviderWrapper.cs
- MemoryResponseElement.cs
- BrowserCapabilitiesFactory.cs
- AssemblyInfo.cs
- RealProxy.cs
- ReadWriteObjectLock.cs
- AsyncParams.cs
- WindowsListViewScroll.cs
- Wizard.cs
- WindowsPrincipal.cs
- CustomPeerResolverService.cs
- XmlQuerySequence.cs