Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / Primitives / ScrollEventArgs.cs / 1305600 / ScrollEventArgs.cs
using System; using System.Windows.Controls; using System.Windows; namespace System.Windows.Controls.Primitives { ////// Occurs when the Value property has changed, either by a Scroll event or programmatically. /// ////// public class ScrollEventArgs: RoutedEventArgs { /// /// This is an instance constructor for the ScrollEventArgs class. It /// is constructed with a reference to the event being raised. /// ///Nothing. public ScrollEventArgs(ScrollEventType scrollEventType, double newValue) : base() { _scrollEventType = scrollEventType; _newValue = newValue; RoutedEvent =ScrollBar.ScrollEvent; } ////// Read-only access to the type of scroll event. /// public ScrollEventType ScrollEventType { get { return _scrollEventType; } } ////// Read-only access to new value of ScrollBar. /// public double NewValue { get { return _newValue; } } ////// This method is used to perform the proper type casting in order to /// call the type-safe ScrollEventHandler delegate for the ScrollEvent event. /// /// The handler to invoke. /// The current object along the event's route. ///Nothing. ////// protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { ScrollEventHandler handler = (ScrollEventHandler)genericHandler; handler(genericTarget, this); } private ScrollEventType _scrollEventType; private double _newValue; } /// /// This delegate must used by handlers of the Scroll event. /// /// The current element along the event's route. /// The event arguments containing additional information about the event. ///Nothing. public delegate void ScrollEventHandler(object sender, ScrollEventArgs 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 { ////// Occurs when the Value property has changed, either by a Scroll event or programmatically. /// ////// public class ScrollEventArgs: RoutedEventArgs { /// /// This is an instance constructor for the ScrollEventArgs class. It /// is constructed with a reference to the event being raised. /// ///Nothing. public ScrollEventArgs(ScrollEventType scrollEventType, double newValue) : base() { _scrollEventType = scrollEventType; _newValue = newValue; RoutedEvent =ScrollBar.ScrollEvent; } ////// Read-only access to the type of scroll event. /// public ScrollEventType ScrollEventType { get { return _scrollEventType; } } ////// Read-only access to new value of ScrollBar. /// public double NewValue { get { return _newValue; } } ////// This method is used to perform the proper type casting in order to /// call the type-safe ScrollEventHandler delegate for the ScrollEvent event. /// /// The handler to invoke. /// The current object along the event's route. ///Nothing. ////// protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { ScrollEventHandler handler = (ScrollEventHandler)genericHandler; handler(genericTarget, this); } private ScrollEventType _scrollEventType; private double _newValue; } /// /// This delegate must used by handlers of the Scroll event. /// /// The current element along the event's route. /// The event arguments containing additional information about the event. ///Nothing. public delegate void ScrollEventHandler(object sender, ScrollEventArgs 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
- ObjectItemCollection.cs
- ObjectContext.cs
- Win32KeyboardDevice.cs
- HandlerBase.cs
- RichTextBoxDesigner.cs
- SpeechRecognizer.cs
- Base64Decoder.cs
- WebBrowserSiteBase.cs
- XhtmlConformanceSection.cs
- TTSVoice.cs
- AssociationTypeEmitter.cs
- SpotLight.cs
- HtmlFormWrapper.cs
- SqlUserDefinedAggregateAttribute.cs
- CompModSwitches.cs
- DataSourceXmlSerializationAttribute.cs
- HuffModule.cs
- UIPermission.cs
- IntellisenseTextBox.cs
- MemberJoinTreeNode.cs
- KeyValueSerializer.cs
- MetadataUtilsSmi.cs
- SecureConversationServiceCredential.cs
- EventLogPermissionEntry.cs
- WebBrowserBase.cs
- Range.cs
- ObjectCache.cs
- CellTreeNodeVisitors.cs
- ComponentResourceManager.cs
- Debugger.cs
- DefinitionUpdate.cs
- WebPartCollection.cs
- WebDescriptionAttribute.cs
- TypeConverterHelper.cs
- SqlDeflator.cs
- ParameterCollection.cs
- MenuItem.cs
- Mapping.cs
- LoginCancelEventArgs.cs
- HTMLTextWriter.cs
- SoapIncludeAttribute.cs
- ByteStreamMessageEncodingElement.cs
- DataObjectCopyingEventArgs.cs
- LightweightEntityWrapper.cs
- UTF7Encoding.cs
- ServicePointManager.cs
- NonDualMessageSecurityOverHttp.cs
- TimerEventSubscription.cs
- _HeaderInfoTable.cs
- SystemWebExtensionsSectionGroup.cs
- RegexMatchCollection.cs
- DigitShape.cs
- MetadataProperty.cs
- ConnectionStringEditor.cs
- MasterPageParser.cs
- HttpProfileGroupBase.cs
- WhitespaceRule.cs
- TextServicesDisplayAttributePropertyRanges.cs
- SettingsBase.cs
- oledbconnectionstring.cs
- OleDbStruct.cs
- FileDialog_Vista.cs
- DataGridViewButtonColumn.cs
- DescendantQuery.cs
- PerformanceCounterCategory.cs
- SignatureToken.cs
- CompoundFileStorageReference.cs
- Subtree.cs
- CSharpCodeProvider.cs
- OracleSqlParser.cs
- SubstitutionDesigner.cs
- ExitEventArgs.cs
- SID.cs
- InternalTypeHelper.cs
- Pkcs7Signer.cs
- TreeViewEvent.cs
- ClientSettingsSection.cs
- Unit.cs
- LinearGradientBrush.cs
- BindingManagerDataErrorEventArgs.cs
- UnsafeNativeMethods.cs
- BrowserCapabilitiesCodeGenerator.cs
- odbcmetadatacolumnnames.cs
- WindowsListViewScroll.cs
- SqlRewriteScalarSubqueries.cs
- BitConverter.cs
- WindowsFormsHelpers.cs
- COM2IProvidePropertyBuilderHandler.cs
- MonitoringDescriptionAttribute.cs
- Query.cs
- ViewPort3D.cs
- DetailsViewUpdatedEventArgs.cs
- COMException.cs
- ErrorFormatterPage.cs
- DocobjHost.cs
- Socket.cs
- FixedNode.cs
- BufferAllocator.cs
- XmlNodeChangedEventManager.cs
- TypeSystem.cs