Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- GradientBrush.cs
- HighContrastHelper.cs
- StorageAssociationTypeMapping.cs
- XmlTextReader.cs
- ScrollEventArgs.cs
- Brush.cs
- RemotingConfiguration.cs
- XmlSerializableWriter.cs
- SafeTimerHandle.cs
- ReadOnlyObservableCollection.cs
- BaseServiceProvider.cs
- SecurityElement.cs
- HttpListener.cs
- CompleteWizardStep.cs
- TextBox.cs
- X509Utils.cs
- UxThemeWrapper.cs
- TextPenaltyModule.cs
- TokenBasedSet.cs
- FormViewInsertEventArgs.cs
- MaskedTextBoxDesigner.cs
- StringTraceRecord.cs
- RsaSecurityKey.cs
- StateDesignerConnector.cs
- SaveLedgerEntryRequest.cs
- ClientSponsor.cs
- versioninfo.cs
- parserscommon.cs
- HuffModule.cs
- ToolboxItemFilterAttribute.cs
- PeerName.cs
- DoubleUtil.cs
- URL.cs
- SocketManager.cs
- BindingListCollectionView.cs
- ByteStorage.cs
- XmlSchemaComplexType.cs
- XmlSchemaValidationException.cs
- TreeView.cs
- WorkflowInstanceContextProvider.cs
- AddInAttribute.cs
- ParameterToken.cs
- PackWebRequestFactory.cs
- DataViewManagerListItemTypeDescriptor.cs
- InternalConfigSettingsFactory.cs
- MarshalByValueComponent.cs
- ColumnResult.cs
- ConfigXmlElement.cs
- XmlArrayAttribute.cs
- VisualBrush.cs
- RegistrySecurity.cs
- WebBrowserBase.cs
- TextRunTypographyProperties.cs
- AuthenticationSection.cs
- CallSiteOps.cs
- PrintSchema.cs
- Point3D.cs
- PseudoWebRequest.cs
- ControlEvent.cs
- ValidatedMobileControlConverter.cs
- WebServiceClientProxyGenerator.cs
- UnaryExpressionHelper.cs
- SignatureToken.cs
- RangeValidator.cs
- EdgeProfileValidation.cs
- Axis.cs
- SqlDataSource.cs
- DispatcherExceptionFilterEventArgs.cs
- DbTypeMap.cs
- TimelineClockCollection.cs
- SafeBitVector32.cs
- TreeNode.cs
- SqlCacheDependencyDatabaseCollection.cs
- Queue.cs
- Brushes.cs
- SelectionEditor.cs
- ModuleBuilderData.cs
- webproxy.cs
- User.cs
- Cursors.cs
- SmiConnection.cs
- TreeViewDataItemAutomationPeer.cs
- RightsController.cs
- HashHelper.cs
- EntityTypeEmitter.cs
- Attribute.cs
- SerialPinChanges.cs
- SqlProviderServices.cs
- httpapplicationstate.cs
- TerminateDesigner.cs
- SafeViewOfFileHandle.cs
- InstanceNotFoundException.cs
- PerformanceCounterPermission.cs
- MimePart.cs
- URLIdentityPermission.cs
- TransformCryptoHandle.cs
- PixelFormats.cs
- Script.cs
- BaseValidator.cs
- DataStorage.cs