Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / RoutedPropertyChangedEventArgs.cs / 1 / 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
- EpmContentDeSerializer.cs
- HttpHeaderCollection.cs
- QuaternionKeyFrameCollection.cs
- ParenthesizePropertyNameAttribute.cs
- SettingsPropertyCollection.cs
- StylusButton.cs
- ValidateNames.cs
- ExternalException.cs
- ListSortDescriptionCollection.cs
- LexicalChunk.cs
- BCLDebug.cs
- SByte.cs
- PerfCounterSection.cs
- PathFigureCollection.cs
- CrossAppDomainChannel.cs
- BinaryFormatterSinks.cs
- VisualStateChangedEventArgs.cs
- BrowserCapabilitiesCodeGenerator.cs
- Vector3DConverter.cs
- XmlNamespaceDeclarationsAttribute.cs
- SoapReflectionImporter.cs
- jithelpers.cs
- AuthenticationService.cs
- SemaphoreFullException.cs
- HttpGetProtocolImporter.cs
- TemplateComponentConnector.cs
- SystemMulticastIPAddressInformation.cs
- FontUnitConverter.cs
- SmtpReplyReader.cs
- GetLedgerEntryForRecipientRequest.cs
- CreateUserWizardStep.cs
- IUnknownConstantAttribute.cs
- TableStyle.cs
- TextEditorDragDrop.cs
- objectresult_tresulttype.cs
- OleDbInfoMessageEvent.cs
- XmlILAnnotation.cs
- ColumnClickEvent.cs
- ClientSponsor.cs
- HtmlDocument.cs
- LeafCellTreeNode.cs
- DeclaredTypeValidatorAttribute.cs
- WebBrowserDesigner.cs
- CoreSwitches.cs
- ResourcesChangeInfo.cs
- XmlSchemaDatatype.cs
- DataListItemEventArgs.cs
- PreviewPageInfo.cs
- EntityDataSourceContextCreatingEventArgs.cs
- Baml6Assembly.cs
- AnnotationStore.cs
- TransformedBitmap.cs
- QilTargetType.cs
- ComPlusDiagnosticTraceRecords.cs
- ProxyGenerationError.cs
- EnumMemberAttribute.cs
- AsyncContentLoadedEventArgs.cs
- ParameterBuilder.cs
- SqlComparer.cs
- ProfileParameter.cs
- RemotingServices.cs
- InheritanceContextChangedEventManager.cs
- GridViewPageEventArgs.cs
- ColorMap.cs
- ScrollContentPresenter.cs
- TypeSystem.cs
- SelectiveScrollingGrid.cs
- SecurityDocument.cs
- ProviderCollection.cs
- WsiProfilesElement.cs
- DataTableCollection.cs
- LicFileLicenseProvider.cs
- Stacktrace.cs
- HMACRIPEMD160.cs
- ProjectionAnalyzer.cs
- DataGridViewRowStateChangedEventArgs.cs
- StateItem.cs
- SchemaTypeEmitter.cs
- DictionaryKeyPropertyAttribute.cs
- UseAttributeSetsAction.cs
- MsdtcClusterUtils.cs
- CurrentChangedEventManager.cs
- IWorkflowDebuggerService.cs
- DirectoryRedirect.cs
- CaseInsensitiveOrdinalStringComparer.cs
- ListViewTableRow.cs
- DataRowCollection.cs
- AstTree.cs
- HtmlTernaryTree.cs
- IEnumerable.cs
- OleDbConnectionFactory.cs
- HttpsHostedTransportConfiguration.cs
- OrderedDictionary.cs
- DefaultEventAttribute.cs
- SqlSelectStatement.cs
- DoubleAnimationClockResource.cs
- GroupItem.cs
- HtmlElementEventArgs.cs
- ObjectSecurity.cs
- ItemsPanelTemplate.cs