Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- FlagsAttribute.cs
- CodeAttributeDeclarationCollection.cs
- DataGridViewSelectedRowCollection.cs
- AnnotationAuthorChangedEventArgs.cs
- Thumb.cs
- NotFiniteNumberException.cs
- Semaphore.cs
- ValueSerializerAttribute.cs
- DataTablePropertyDescriptor.cs
- ButtonRenderer.cs
- CrossSiteScriptingValidation.cs
- XsltLoader.cs
- Vector3DKeyFrameCollection.cs
- ValidationSummary.cs
- XmlNodeChangedEventArgs.cs
- WsiProfilesElementCollection.cs
- Int32Storage.cs
- UIElementParagraph.cs
- Activation.cs
- Peer.cs
- SortFieldComparer.cs
- InfiniteTimeSpanConverter.cs
- XmlNodeReader.cs
- QilXmlReader.cs
- DataBindingList.cs
- XmlNamedNodeMap.cs
- UiaCoreTypesApi.cs
- RectAnimationUsingKeyFrames.cs
- QueueProcessor.cs
- TrackingStringDictionary.cs
- MSAANativeProvider.cs
- EncryptedType.cs
- DocumentViewer.cs
- PropertyGridDesigner.cs
- _emptywebproxy.cs
- keycontainerpermission.cs
- FrameSecurityDescriptor.cs
- CachedPathData.cs
- SequentialUshortCollection.cs
- ErrorCodes.cs
- CodeGroup.cs
- StateMachine.cs
- EntityDataSourceValidationException.cs
- ResourceIDHelper.cs
- ListSourceHelper.cs
- _LocalDataStore.cs
- SmiMetaDataProperty.cs
- XpsS0ValidatingLoader.cs
- RtfControlWordInfo.cs
- ContainerFilterService.cs
- GridViewDeletedEventArgs.cs
- NotifyInputEventArgs.cs
- MeshGeometry3D.cs
- CodeAccessSecurityEngine.cs
- BinaryParser.cs
- TextUtf8RawTextWriter.cs
- EntityWithChangeTrackerStrategy.cs
- UpdatePanelControlTrigger.cs
- SpoolingTaskBase.cs
- NeutralResourcesLanguageAttribute.cs
- SafeSystemMetrics.cs
- ScriptDescriptor.cs
- ScanQueryOperator.cs
- BitmapEffectDrawing.cs
- SiteMapDataSourceView.cs
- VerificationAttribute.cs
- DiagnosticsConfiguration.cs
- TransformPatternIdentifiers.cs
- SystemFonts.cs
- MaskDescriptors.cs
- ReadOnlyCollectionBase.cs
- LingerOption.cs
- WindowsScrollBarBits.cs
- ErrorWrapper.cs
- ZoomPercentageConverter.cs
- VersionPair.cs
- Message.cs
- XmlNamespaceMapping.cs
- ObjectCacheHost.cs
- Effect.cs
- Viewport3DVisual.cs
- RequestStatusBarUpdateEventArgs.cs
- HuffModule.cs
- DataGridViewLayoutData.cs
- SQLSingleStorage.cs
- WSSecurityPolicy12.cs
- WebPartConnectionsCancelVerb.cs
- PageParser.cs
- RelAssertionDirectKeyIdentifierClause.cs
- webclient.cs
- InvalidOperationException.cs
- EpmAttributeNameBuilder.cs
- Camera.cs
- EditorPartChrome.cs
- Collection.cs
- TextTreeFixupNode.cs
- OutOfMemoryException.cs
- XslCompiledTransform.cs
- ClientBuildManager.cs
- WindowsListViewItemCheckBox.cs