Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ProtocolsConfigurationEntry.cs
- ContentTextAutomationPeer.cs
- InstanceKeyView.cs
- SafeMarshalContext.cs
- ProxyWebPartManager.cs
- MimeParameters.cs
- Native.cs
- ForEachDesigner.xaml.cs
- DeferredRunTextReference.cs
- _ConnectStream.cs
- Debug.cs
- FontFamilyConverter.cs
- OleDbErrorCollection.cs
- CqlQuery.cs
- Rotation3DKeyFrameCollection.cs
- _PooledStream.cs
- LogRecordSequence.cs
- ADMembershipUser.cs
- QilInvokeLateBound.cs
- ChannelEndpointElement.cs
- DBAsyncResult.cs
- HttpRuntimeSection.cs
- ComboBoxAutomationPeer.cs
- Line.cs
- NewExpression.cs
- DataListItemCollection.cs
- DataListCommandEventArgs.cs
- ListBindableAttribute.cs
- ProfileManager.cs
- RSAPKCS1KeyExchangeFormatter.cs
- TextSearch.cs
- XmlEncodedRawTextWriter.cs
- TextRangeSerialization.cs
- BindingListCollectionView.cs
- RoleProviderPrincipal.cs
- QuaternionIndependentAnimationStorage.cs
- regiisutil.cs
- DbConnectionStringBuilder.cs
- Binding.cs
- ConfigurationErrorsException.cs
- SelectionEditor.cs
- CapabilitiesSection.cs
- DateTimeFormat.cs
- GraphicsState.cs
- IUnknownConstantAttribute.cs
- ResourcePool.cs
- peernodestatemanager.cs
- NominalTypeEliminator.cs
- PageThemeParser.cs
- InheritablePropertyChangeInfo.cs
- CharUnicodeInfo.cs
- StaticFileHandler.cs
- TextPointerBase.cs
- Crypto.cs
- ConnectionManagementSection.cs
- GenerateScriptTypeAttribute.cs
- CfgSemanticTag.cs
- UserControlAutomationPeer.cs
- Substitution.cs
- DispatcherHookEventArgs.cs
- FrameworkContextData.cs
- XmlBinaryReaderSession.cs
- SystemColors.cs
- MessageDecoder.cs
- TypeUtil.cs
- StylusPointPropertyUnit.cs
- InfoCardCryptoHelper.cs
- EpmContentDeSerializer.cs
- BitmapMetadataBlob.cs
- CodeNamespaceImport.cs
- WebAdminConfigurationHelper.cs
- PeerApplication.cs
- ResourcesBuildProvider.cs
- BitmapEffectInput.cs
- HtmlTitle.cs
- LambdaCompiler.Logical.cs
- BookmarkCallbackWrapper.cs
- NativeObjectSecurity.cs
- NumericUpDownAccelerationCollection.cs
- SliderAutomationPeer.cs
- XmlSerializerFactory.cs
- BuildTopDownAttribute.cs
- DataTableTypeConverter.cs
- CodeTypeReferenceCollection.cs
- UnsafeNativeMethods.cs
- filewebresponse.cs
- NullExtension.cs
- StructuredTypeInfo.cs
- OracleCommandSet.cs
- dataSvcMapFileLoader.cs
- InstanceData.cs
- TimeSpan.cs
- BatchParser.cs
- Stylesheet.cs
- Size.cs
- SqlDataReader.cs
- XamlReaderConstants.cs
- RequestCachingSection.cs
- InternalBase.cs
- MyContact.cs