Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / RoutedPropertyChangedEventArgs.cs / 1305600 / RoutedPropertyChangedEventArgs.cs
using System; using System.Windows; using System.Windows.Input; // Disable CS3001, CS3003, CS3024: Warning as Error: not CLS-compliant #pragma warning disable 3001, 3003, 3024 namespace System.Windows { ////// This delegate must used by handlers of the RoutedPropertyChangedEvent event. /// /// The current element along the event's route. /// The event arguments containing additional information about the event. ///Nothing. public delegate void RoutedPropertyChangedEventHandler(object sender, RoutedPropertyChangedEventArgs e); /// /// This RoutedPropertyChangedEventArgs class contains old and new value when /// RoutedPropertyChangedEvent is raised. /// ////// public class RoutedPropertyChangedEventArgs : RoutedEventArgs { /// /// This is an instance constructor for the RoutedPropertyChangedEventArgs class. /// It is constructed with a reference to the event being raised. /// /// The old property value /// The new property value ///Nothing. public RoutedPropertyChangedEventArgs(T oldValue, T newValue) : base() { _oldValue = oldValue; _newValue = newValue; } ////// This is an instance constructor for the RoutedPropertyChangedEventArgs class. /// It is constructed with a reference to the event being raised. /// /// The old property value /// The new property value /// RoutedEvent ///Nothing. public RoutedPropertyChangedEventArgs(T oldValue, T newValue, RoutedEvent routedEvent) : this(oldValue, newValue) { RoutedEvent = routedEvent; } ////// Return the old value /// public T OldValue { get { return _oldValue; } } ////// Return the new value /// public T NewValue { get { return _newValue; } } ////// This method is used to perform the proper type casting in order to /// call the type-safe RoutedPropertyChangedEventHandler delegate for the IsCheckedChangedEvent event. /// /// The handler to invoke. /// The current object along the event's route. ///Nothing. ///protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { RoutedPropertyChangedEventHandler handler = (RoutedPropertyChangedEventHandler )genericHandler; handler(genericTarget, this); } private T _oldValue; private T _newValue; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Windows; using System.Windows.Input; // Disable CS3001, CS3003, CS3024: Warning as Error: not CLS-compliant #pragma warning disable 3001, 3003, 3024 namespace System.Windows { /// /// This delegate must used by handlers of the RoutedPropertyChangedEvent event. /// /// The current element along the event's route. /// The event arguments containing additional information about the event. ///Nothing. public delegate void RoutedPropertyChangedEventHandler(object sender, RoutedPropertyChangedEventArgs e); /// /// This RoutedPropertyChangedEventArgs class contains old and new value when /// RoutedPropertyChangedEvent is raised. /// ////// public class RoutedPropertyChangedEventArgs : RoutedEventArgs { /// /// This is an instance constructor for the RoutedPropertyChangedEventArgs class. /// It is constructed with a reference to the event being raised. /// /// The old property value /// The new property value ///Nothing. public RoutedPropertyChangedEventArgs(T oldValue, T newValue) : base() { _oldValue = oldValue; _newValue = newValue; } ////// This is an instance constructor for the RoutedPropertyChangedEventArgs class. /// It is constructed with a reference to the event being raised. /// /// The old property value /// The new property value /// RoutedEvent ///Nothing. public RoutedPropertyChangedEventArgs(T oldValue, T newValue, RoutedEvent routedEvent) : this(oldValue, newValue) { RoutedEvent = routedEvent; } ////// Return the old value /// public T OldValue { get { return _oldValue; } } ////// Return the new value /// public T NewValue { get { return _newValue; } } ////// This method is used to perform the proper type casting in order to /// call the type-safe RoutedPropertyChangedEventHandler delegate for the IsCheckedChangedEvent event. /// /// The handler to invoke. /// The current object along the event's route. ///Nothing. ///protected override void InvokeEventHandler(Delegate genericHandler, object genericTarget) { RoutedPropertyChangedEventHandler handler = (RoutedPropertyChangedEventHandler )genericHandler; handler(genericTarget, this); } private T _oldValue; private T _newValue; } } // 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
- KnownBoxes.cs
- MemoryMappedViewAccessor.cs
- DbProviderServices.cs
- SpnEndpointIdentityExtension.cs
- SafeHandle.cs
- XmlNamedNodeMap.cs
- indexingfiltermarshaler.cs
- MergablePropertyAttribute.cs
- RepeaterItemEventArgs.cs
- StringInfo.cs
- MILUtilities.cs
- BeginStoryboard.cs
- OdbcFactory.cs
- Int64AnimationBase.cs
- SystemInfo.cs
- httpserverutility.cs
- RtfToXamlReader.cs
- COM2IDispatchConverter.cs
- Permission.cs
- BinHexEncoder.cs
- Misc.cs
- RelatedPropertyManager.cs
- DbProviderFactoriesConfigurationHandler.cs
- ParserExtension.cs
- AuthenticationException.cs
- CodeCatchClauseCollection.cs
- BitmapData.cs
- PriorityQueue.cs
- HighlightComponent.cs
- Brush.cs
- peernodestatemanager.cs
- PathNode.cs
- PropertyConverter.cs
- TextPointer.cs
- MetadataSource.cs
- DSASignatureDeformatter.cs
- InvalidOperationException.cs
- MD5.cs
- QualifierSet.cs
- TracePayload.cs
- AdRotator.cs
- PermissionToken.cs
- AsymmetricSignatureDeformatter.cs
- XPathScanner.cs
- EntityContainerRelationshipSet.cs
- XmlWellformedWriterHelpers.cs
- FlowDocumentFormatter.cs
- PDBReader.cs
- CssTextWriter.cs
- Viewport3DVisual.cs
- PathSegment.cs
- UTF8Encoding.cs
- SolidColorBrush.cs
- XmlUtil.cs
- HostedHttpTransportManager.cs
- VisualTreeUtils.cs
- CompositeCollection.cs
- Types.cs
- SelectorItemAutomationPeer.cs
- KeyBinding.cs
- TreeViewImageKeyConverter.cs
- DbParameterCollectionHelper.cs
- WebPartMenu.cs
- MimeFormImporter.cs
- RichTextBox.cs
- CellCreator.cs
- DataGridItem.cs
- XmlSchemaNotation.cs
- SqlMethodTransformer.cs
- PassportAuthenticationModule.cs
- DeflateStream.cs
- XmlConvert.cs
- _emptywebproxy.cs
- StrokeCollection.cs
- CheckPair.cs
- Membership.cs
- ByteBufferPool.cs
- TabControlCancelEvent.cs
- CommonProperties.cs
- PackageRelationship.cs
- Normalizer.cs
- WinEventWrap.cs
- SynchronizedDispatch.cs
- TemplateParser.cs
- ISCIIEncoding.cs
- HtmlContainerControl.cs
- X509Utils.cs
- Win32Exception.cs
- MimeObjectFactory.cs
- SchemaCollectionCompiler.cs
- mediaeventshelper.cs
- DataTablePropertyDescriptor.cs
- ImageSourceValueSerializer.cs
- Activity.cs
- Typography.cs
- BamlTreeNode.cs
- WebServiceFaultDesigner.cs
- Utils.cs
- StoreContentChangedEventArgs.cs
- ResolveDuplexAsyncResult.cs