Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / MS / Internal / Data / BindingValueChangedEventArgs.cs / 1305600 / BindingValueChangedEventArgs.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: BindingValueChanged event arguments // // Specs: http://avalon/connecteddata/M5%20Specs/UIBinding.mht // //--------------------------------------------------------------------------- using System; namespace MS.Internal.Data { ////// Arguments for BindingValueChanged events. /// internal class BindingValueChangedEventArgs : EventArgs { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- internal BindingValueChangedEventArgs(object oldValue, object newValue) : base() { _oldValue = oldValue; _newValue = newValue; } //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- ////// The old value of the binding. /// public object OldValue { get { return _oldValue; } } ////// The new value of the binding. /// public object NewValue { get { return _newValue; } } //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ private object _oldValue, _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
- SqlTypeConverter.cs
- StyleReferenceConverter.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- TypeFieldSchema.cs
- ExpandoObject.cs
- ImageListImage.cs
- SynchronizationContext.cs
- BinaryConverter.cs
- RequestUriProcessor.cs
- CompilerErrorCollection.cs
- MatrixAnimationUsingKeyFrames.cs
- ProfilePropertySettings.cs
- ConfigurationFileMap.cs
- GeneratedCodeAttribute.cs
- Propagator.cs
- TextChange.cs
- RequestCache.cs
- MsmqTransportElement.cs
- StrokeDescriptor.cs
- ExtendedPropertyCollection.cs
- LoadWorkflowCommand.cs
- MemberRestriction.cs
- CookieProtection.cs
- SchemaElement.cs
- HandlerWithFactory.cs
- SqlDataSourceCache.cs
- xml.cs
- HwndSubclass.cs
- HwndHostAutomationPeer.cs
- ProfileGroupSettings.cs
- Geometry3D.cs
- VoiceSynthesis.cs
- BinaryFormatter.cs
- RegexCompilationInfo.cs
- ContentHostHelper.cs
- TreeViewCancelEvent.cs
- TypeReference.cs
- ValueHandle.cs
- WindowsContainer.cs
- GraphicsState.cs
- BlurBitmapEffect.cs
- XmlILModule.cs
- CustomAttribute.cs
- CodeMemberField.cs
- SchemaExporter.cs
- BitmapFrame.cs
- SqlAliaser.cs
- WorkflowApplicationEventArgs.cs
- SchemaType.cs
- HtmlImage.cs
- PersistStreamTypeWrapper.cs
- XmlSignificantWhitespace.cs
- HandlerWithFactory.cs
- AuthorizationRule.cs
- GenericPrincipal.cs
- RtfFormatStack.cs
- UriSectionData.cs
- GeneratedView.cs
- SerialReceived.cs
- Deserializer.cs
- SqlDataRecord.cs
- CodeSnippetStatement.cs
- RelationshipConverter.cs
- CodeTypeReferenceCollection.cs
- DropShadowEffect.cs
- StoreContentChangedEventArgs.cs
- TextRenderer.cs
- HttpRuntimeSection.cs
- Constants.cs
- SqlEnums.cs
- AvTrace.cs
- DataServiceRequestException.cs
- WindowsSlider.cs
- ViewService.cs
- Function.cs
- ObjectReferenceStack.cs
- LicenseContext.cs
- DetailsViewDeleteEventArgs.cs
- LexicalChunk.cs
- basecomparevalidator.cs
- InvokePatternIdentifiers.cs
- MethodExpr.cs
- HostedImpersonationContext.cs
- Base64Encoder.cs
- DeflateStream.cs
- XmlElementAttribute.cs
- ContactManager.cs
- SafePipeHandle.cs
- MessageRpc.cs
- Animatable.cs
- ToolTip.cs
- MethodCallTranslator.cs
- BaseCollection.cs
- PlainXmlWriter.cs
- KnownBoxes.cs
- ToolboxDataAttribute.cs
- SafeNativeMethods.cs
- ModuleBuilder.cs
- DataSetSchema.cs
- StreamResourceInfo.cs