Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / MS / Internal / Data / BindingValueChangedEventArgs.cs / 1 / 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. //---------------------------------------------------------------------------- // //// 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
- RegexReplacement.cs
- X509Certificate2.cs
- ToolStripPanelRenderEventArgs.cs
- ScriptingWebServicesSectionGroup.cs
- SqlBinder.cs
- XmlSchemaChoice.cs
- LinkClickEvent.cs
- HostedNamedPipeTransportManager.cs
- DataGridViewButtonCell.cs
- JobDuplex.cs
- SafeSecurityHandles.cs
- DataBoundControl.cs
- XamlSerializationHelper.cs
- DataMisalignedException.cs
- TreeWalkHelper.cs
- SqlPersonalizationProvider.cs
- FamilyMapCollection.cs
- NativeMethods.cs
- AnimationClockResource.cs
- ServiceAuthorizationBehavior.cs
- BrowserCapabilitiesCodeGenerator.cs
- MetadataCollection.cs
- TemplateField.cs
- Rect3D.cs
- GridViewDeleteEventArgs.cs
- HttpServerVarsCollection.cs
- VectorAnimation.cs
- UInt64.cs
- AutomationElementCollection.cs
- IUnknownConstantAttribute.cs
- PointCollectionValueSerializer.cs
- RSAPKCS1KeyExchangeFormatter.cs
- SByte.cs
- JsonEnumDataContract.cs
- RoutedEvent.cs
- LayoutSettings.cs
- NetCodeGroup.cs
- PackagePart.cs
- BindingExpressionUncommonField.cs
- XmlResolver.cs
- XmlILTrace.cs
- HttpListenerContext.cs
- ListViewDeleteEventArgs.cs
- BounceEase.cs
- GridSplitter.cs
- XNodeNavigator.cs
- RangeEnumerable.cs
- RowCache.cs
- WebRequest.cs
- BrushMappingModeValidation.cs
- ProxyManager.cs
- DataFormats.cs
- SqlInternalConnectionTds.cs
- HttpResponseHeader.cs
- SQLInt16.cs
- DependencyPropertyAttribute.cs
- ObjectItemCachedAssemblyLoader.cs
- SaveFileDialogDesigner.cs
- FullTextLine.cs
- CodePrimitiveExpression.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- SessionSymmetricTransportSecurityProtocolFactory.cs
- GroupBox.cs
- UnsafeNativeMethods.cs
- StyleCollection.cs
- PerformanceCounterLib.cs
- EntityUtil.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- SecurityDescriptor.cs
- FixedTextContainer.cs
- DBNull.cs
- ExpressionLexer.cs
- X509Utils.cs
- WebBrowser.cs
- DataSourceDesigner.cs
- ContentFilePart.cs
- FormsIdentity.cs
- ExpressionBindings.cs
- XslTransform.cs
- InvalidMessageContractException.cs
- DiscreteKeyFrames.cs
- UnsafeNativeMethodsPenimc.cs
- CompiledQueryCacheKey.cs
- Literal.cs
- Triplet.cs
- BitmapSizeOptions.cs
- DataPagerCommandEventArgs.cs
- ExpressionContext.cs
- DbProviderSpecificTypePropertyAttribute.cs
- WindowsFormsHelpers.cs
- FromRequest.cs
- AbstractDataSvcMapFileLoader.cs
- ToolStripPanelRow.cs
- WebBrowser.cs
- InheritanceAttribute.cs
- InfiniteTimeSpanConverter.cs
- BezierSegment.cs
- UnitySerializationHolder.cs
- RequestDescription.cs
- HuffCodec.cs