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
- ReferencedAssembly.cs
- ToolStripButton.cs
- WebPartMenuStyle.cs
- PublishLicense.cs
- ClockGroup.cs
- _ListenerAsyncResult.cs
- DoubleLinkList.cs
- XmlCountingReader.cs
- RenderTargetBitmap.cs
- CustomWebEventKey.cs
- SignedPkcs7.cs
- basecomparevalidator.cs
- Trustee.cs
- EnumValAlphaComparer.cs
- SettingsPropertyValueCollection.cs
- SystemWebExtensionsSectionGroup.cs
- DoubleUtil.cs
- WsatServiceCertificate.cs
- sqlser.cs
- EarlyBoundInfo.cs
- IODescriptionAttribute.cs
- EDesignUtil.cs
- DesignerCategoryAttribute.cs
- DataSourceControlBuilder.cs
- ListViewItem.cs
- XmlILIndex.cs
- PropertyManager.cs
- AdRotator.cs
- ServiceHostingEnvironment.cs
- FilterQuery.cs
- BaseParser.cs
- ContainerUtilities.cs
- GeneralTransform3DGroup.cs
- HelpFileFileNameEditor.cs
- basemetadatamappingvisitor.cs
- RoutingChannelExtension.cs
- SQLDouble.cs
- SqlDataAdapter.cs
- Pair.cs
- BaseHashHelper.cs
- DesignOnlyAttribute.cs
- BinaryExpression.cs
- PropertyMetadata.cs
- AsnEncodedData.cs
- OuterGlowBitmapEffect.cs
- HMACSHA384.cs
- WebBaseEventKeyComparer.cs
- GridView.cs
- _LazyAsyncResult.cs
- CompilationUtil.cs
- HashSetEqualityComparer.cs
- DocumentationServerProtocol.cs
- VariableQuery.cs
- Utils.cs
- ColumnCollection.cs
- NavigatingCancelEventArgs.cs
- GestureRecognitionResult.cs
- CachedCompositeFamily.cs
- SystemColors.cs
- SpellCheck.cs
- DbMetaDataCollectionNames.cs
- InfoCardUIAgent.cs
- TextElement.cs
- Facet.cs
- CroppedBitmap.cs
- ReadOnlyTernaryTree.cs
- InplaceBitmapMetadataWriter.cs
- TargetPerspective.cs
- HtmlLink.cs
- ScalarType.cs
- AnnotationHighlightLayer.cs
- RegexCharClass.cs
- ColumnResult.cs
- NegotiateStream.cs
- ListenerServiceInstallComponent.cs
- ImageClickEventArgs.cs
- MethodMessage.cs
- CacheModeValueSerializer.cs
- SessionStateModule.cs
- DebugInfoExpression.cs
- ColorConvertedBitmapExtension.cs
- FastEncoderWindow.cs
- ConfigurationLocation.cs
- Cursor.cs
- TranslateTransform3D.cs
- SecurityContext.cs
- WorkflowNamespace.cs
- ReceiveSecurityHeader.cs
- AsnEncodedData.cs
- ToolStripSplitStackLayout.cs
- Stackframe.cs
- ElementMarkupObject.cs
- PlainXmlDeserializer.cs
- PageContentCollection.cs
- Msec.cs
- UInt16.cs
- TTSEvent.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- MemberAccessException.cs
- MissingMethodException.cs