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
- MimeMapping.cs
- AdvancedBindingPropertyDescriptor.cs
- SqlDelegatedTransaction.cs
- ResourceReferenceKeyNotFoundException.cs
- AuthenticatedStream.cs
- PersistenceMetadataNamespace.cs
- ContextInformation.cs
- HttpHeaderCollection.cs
- SafeThreadHandle.cs
- TickBar.cs
- AtomContentProperty.cs
- DPCustomTypeDescriptor.cs
- WebProxyScriptElement.cs
- contentDescriptor.cs
- Bidi.cs
- ButtonBaseAutomationPeer.cs
- PropertyCondition.cs
- QueryIntervalOp.cs
- DifferencingCollection.cs
- PageFunction.cs
- WindowsScroll.cs
- GeometryGroup.cs
- CodeLinePragma.cs
- PointCollectionValueSerializer.cs
- Camera.cs
- HostingPreferredMapPath.cs
- XmlObjectSerializer.cs
- SqlProvider.cs
- ParameterBuilder.cs
- HashHelpers.cs
- PointHitTestParameters.cs
- TransactionTraceIdentifier.cs
- ScriptingWebServicesSectionGroup.cs
- AccessedThroughPropertyAttribute.cs
- ErrorWebPart.cs
- InputQueueChannelAcceptor.cs
- Model3DGroup.cs
- ListSourceHelper.cs
- SmtpException.cs
- RankException.cs
- RepeaterItemCollection.cs
- DoubleAnimationUsingPath.cs
- embossbitmapeffect.cs
- ServiceOperation.cs
- ConditionedDesigner.cs
- HandleTable.cs
- GeometryHitTestResult.cs
- ToolStripLocationCancelEventArgs.cs
- RequestCachingSection.cs
- AspNetCompatibilityRequirementsAttribute.cs
- GestureRecognizer.cs
- xmlsaver.cs
- ProcessModule.cs
- RegexStringValidator.cs
- ObjectDataSourceDisposingEventArgs.cs
- ProcessThread.cs
- _IPv6Address.cs
- CLRBindingWorker.cs
- DataPagerField.cs
- UTF8Encoding.cs
- HyperLinkField.cs
- DrawListViewColumnHeaderEventArgs.cs
- InputScopeConverter.cs
- ControlCachePolicy.cs
- UserControlParser.cs
- Clipboard.cs
- TemplateField.cs
- PerfCounters.cs
- IsolatedStorage.cs
- ControlParameter.cs
- WebPartChrome.cs
- DataBoundControlAdapter.cs
- PageSetupDialog.cs
- Control.cs
- ErrorCodes.cs
- XmlSchemaInclude.cs
- WebGetAttribute.cs
- MenuBindingsEditor.cs
- XamlToRtfWriter.cs
- AssemblyHash.cs
- AssemblyAttributes.cs
- IDQuery.cs
- RuntimeConfig.cs
- securitycriticaldataformultiplegetandset.cs
- Model3D.cs
- Path.cs
- FormParameter.cs
- TokenBasedSetEnumerator.cs
- XsdDataContractExporter.cs
- ListMarkerLine.cs
- _NegotiateClient.cs
- PersonalizationProvider.cs
- HtmlToClrEventProxy.cs
- ClientTargetCollection.cs
- EnvironmentPermission.cs
- AnnotationComponentChooser.cs
- DependentTransaction.cs
- LocalizationComments.cs
- FileLevelControlBuilderAttribute.cs
- DataGridViewAdvancedBorderStyle.cs