Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Input / MouseWheelEventArgs.cs / 1 / MouseWheelEventArgs.cs
using System;
namespace System.Windows.Input
{
///
/// The MouseWheelEventArgs describes the state of a Mouse wheel.
///
public class MouseWheelEventArgs : MouseEventArgs
{
///
/// Initializes a new instance of the MouseWheelEventArgs class.
///
///
/// The Mouse device associated with this event.
///
///
/// The time when the input occured.
///
///
/// How much the mouse wheel turned.
///
public MouseWheelEventArgs(MouseDevice mouse, int timestamp, int delta) : base(mouse, timestamp)
{
_delta = delta;
}
///
/// Read-only access to the amount the mouse wheel turned.
///
public int Delta
{
get {return _delta;}
}
///
/// The mechanism used to call the type-specific handler on the
/// target.
///
///
/// The generic handler to call in a type-specific way.
///
///
/// The target to call the handler on.
///
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget)
{
MouseWheelEventHandler handler = (MouseWheelEventHandler) genericHandler;
handler(genericTarget, this);
}
private static int _delta;
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using System;
namespace System.Windows.Input
{
///
/// The MouseWheelEventArgs describes the state of a Mouse wheel.
///
public class MouseWheelEventArgs : MouseEventArgs
{
///
/// Initializes a new instance of the MouseWheelEventArgs class.
///
///
/// The Mouse device associated with this event.
///
///
/// The time when the input occured.
///
///
/// How much the mouse wheel turned.
///
public MouseWheelEventArgs(MouseDevice mouse, int timestamp, int delta) : base(mouse, timestamp)
{
_delta = delta;
}
///
/// Read-only access to the amount the mouse wheel turned.
///
public int Delta
{
get {return _delta;}
}
///
/// The mechanism used to call the type-specific handler on the
/// target.
///
///
/// The generic handler to call in a type-specific way.
///
///
/// The target to call the handler on.
///
protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget)
{
MouseWheelEventHandler handler = (MouseWheelEventHandler) genericHandler;
handler(genericTarget, this);
}
private static int _delta;
}
}
// 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
- FlowDocumentFormatter.cs
- DataSvcMapFileSerializer.cs
- GeneralTransformGroup.cs
- HiddenField.cs
- TransformerInfoCollection.cs
- Hash.cs
- VisualStyleElement.cs
- DataSet.cs
- Expression.DebuggerProxy.cs
- WaitForChangedResult.cs
- PageParser.cs
- XmlSchemaAny.cs
- TreeViewImageGenerator.cs
- BroadcastEventHelper.cs
- PageRequestManager.cs
- WebAdminConfigurationHelper.cs
- FormatterServices.cs
- OperationFormatter.cs
- SafeCertificateStore.cs
- PagerStyle.cs
- InternalCache.cs
- XsdBuildProvider.cs
- PermissionSetTriple.cs
- SqlRowUpdatingEvent.cs
- HttpCapabilitiesSectionHandler.cs
- Base64Encoder.cs
- UnsafeNativeMethods.cs
- SubtreeProcessor.cs
- FloatUtil.cs
- DoubleLinkListEnumerator.cs
- CustomErrorCollection.cs
- ObjectDataSourceEventArgs.cs
- XmlTextReaderImplHelpers.cs
- CryptoApi.cs
- DiscoveryDocumentLinksPattern.cs
- XmlSerializerAssemblyAttribute.cs
- cookiecontainer.cs
- SafeArrayRankMismatchException.cs
- MetadataPropertyAttribute.cs
- CommandPlan.cs
- PipelineModuleStepContainer.cs
- RightsManagementInformation.cs
- ClassData.cs
- CommonDialog.cs
- ProcessHostFactoryHelper.cs
- GridViewRow.cs
- SegmentTree.cs
- MiniMapControl.xaml.cs
- IntermediatePolicyValidator.cs
- DataRecordObjectView.cs
- EntityContainer.cs
- AncillaryOps.cs
- AdapterDictionary.cs
- ResXDataNode.cs
- WebPartDisplayModeCancelEventArgs.cs
- FamilyTypeface.cs
- ComplexBindingPropertiesAttribute.cs
- SqlBulkCopyColumnMappingCollection.cs
- SafeArchiveContext.cs
- SerializerDescriptor.cs
- GridViewPageEventArgs.cs
- ComponentConverter.cs
- TypeDependencyAttribute.cs
- UpdatePanel.cs
- StagingAreaInputItem.cs
- SqlDataSourceSelectingEventArgs.cs
- AxParameterData.cs
- PathFigureCollectionValueSerializer.cs
- TypedReference.cs
- UpdateDelegates.Generated.cs
- ToolTip.cs
- DiscoveryProxy.cs
- PackagingUtilities.cs
- TreeNodeMouseHoverEvent.cs
- InstanceNameConverter.cs
- RegexCaptureCollection.cs
- XmlQueryRuntime.cs
- DataGridItemEventArgs.cs
- SqlOuterApplyReducer.cs
- QilFactory.cs
- TemplatedMailWebEventProvider.cs
- IndexedEnumerable.cs
- GeneralTransform.cs
- SmtpCommands.cs
- RijndaelManagedTransform.cs
- TaiwanLunisolarCalendar.cs
- GenerateHelper.cs
- BindingOperations.cs
- ConfigXmlDocument.cs
- ThreadAttributes.cs
- TextElementCollection.cs
- DataGrid.cs
- Wizard.cs
- AnnotationAuthorChangedEventArgs.cs
- Parallel.cs
- ExceptionHelpers.cs
- AuthStoreRoleProvider.cs
- HtmlControl.cs
- InkCanvas.cs
- PersonalizationProviderCollection.cs