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
- PasswordBox.cs
- ChannelServices.cs
- InputLangChangeRequestEvent.cs
- UrlMapping.cs
- CommandEventArgs.cs
- DataViewManagerListItemTypeDescriptor.cs
- PropertyChangingEventArgs.cs
- SerializeAbsoluteContext.cs
- TextStore.cs
- SmtpException.cs
- ProviderBase.cs
- Int32RectConverter.cs
- ContextStaticAttribute.cs
- ErrorFormatter.cs
- AppDomainUnloadedException.cs
- ImageMapEventArgs.cs
- TreeViewItem.cs
- FileClassifier.cs
- ConfigXmlCDataSection.cs
- GridViewRow.cs
- TreeViewHitTestInfo.cs
- MemoryFailPoint.cs
- XmlResolver.cs
- ObjectSpanRewriter.cs
- DnsPermission.cs
- UseLicense.cs
- ExpressionBindings.cs
- DataGridViewColumnCollectionEditor.cs
- EventDescriptor.cs
- MemoryResponseElement.cs
- CommandEventArgs.cs
- FontCollection.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- GraphicsContainer.cs
- Triangle.cs
- WebPartConnectionsCancelVerb.cs
- EncryptedType.cs
- ParameterInfo.cs
- XamlWrapperReaders.cs
- DynamicPropertyHolder.cs
- ADRoleFactory.cs
- PerformanceCountersElement.cs
- NavigationExpr.cs
- MemoryRecordBuffer.cs
- CapabilitiesState.cs
- ActivityInterfaces.cs
- StreamGeometry.cs
- HttpRawResponse.cs
- RelationshipWrapper.cs
- ChameleonKey.cs
- TableHeaderCell.cs
- OracleInfoMessageEventArgs.cs
- RelatedCurrencyManager.cs
- FileAuthorizationModule.cs
- ErrorFormatterPage.cs
- SolidBrush.cs
- TypeUsage.cs
- WorkflowInvoker.cs
- SqlUdtInfo.cs
- EpmContentSerializer.cs
- WebPartEditorCancelVerb.cs
- SyndicationSerializer.cs
- PathSegment.cs
- HttpsHostedTransportConfiguration.cs
- XmlSchemaAnnotation.cs
- SID.cs
- CombinedGeometry.cs
- ProcessHostMapPath.cs
- SurrogateChar.cs
- IChannel.cs
- ObjectViewFactory.cs
- PageRequestManager.cs
- MissingSatelliteAssemblyException.cs
- RepeatInfo.cs
- WhitespaceRuleReader.cs
- FocusTracker.cs
- StringSorter.cs
- SQLResource.cs
- SqlReferenceCollection.cs
- XmlSchemas.cs
- XamlPointCollectionSerializer.cs
- MimeXmlImporter.cs
- TextCharacters.cs
- AutomationAttributeInfo.cs
- ActiveDocumentEvent.cs
- PageBuildProvider.cs
- SocketPermission.cs
- BuildProviderAppliesToAttribute.cs
- CheckoutException.cs
- TextFormatterHost.cs
- XmlNodeComparer.cs
- Transform3D.cs
- DayRenderEvent.cs
- RtfToXamlReader.cs
- MultiViewDesigner.cs
- Transform.cs
- KoreanCalendar.cs
- DesignerCategoryAttribute.cs
- InputScope.cs
- DataView.cs