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
- ListViewSortEventArgs.cs
- HtmlLink.cs
- DrawListViewColumnHeaderEventArgs.cs
- BufferedGraphicsContext.cs
- ObjectListItemCollection.cs
- EntityClassGenerator.cs
- DataGridRowHeader.cs
- BindingBase.cs
- PropertySegmentSerializationProvider.cs
- XamlWrappingReader.cs
- WorkflowDurableInstance.cs
- StringStorage.cs
- GridViewRowEventArgs.cs
- BCLDebug.cs
- Configuration.cs
- DNS.cs
- CancellationState.cs
- VerificationException.cs
- ProjectionPathBuilder.cs
- CalendarTable.cs
- DetailsViewPagerRow.cs
- Compiler.cs
- metadatamappinghashervisitor.cs
- RectValueSerializer.cs
- TextBlockAutomationPeer.cs
- ObjectDataSourceEventArgs.cs
- FormsAuthenticationConfiguration.cs
- ApplicationServiceManager.cs
- WebRequestModuleElement.cs
- HttpCachePolicy.cs
- InOutArgumentConverter.cs
- DataSvcMapFile.cs
- BCLDebug.cs
- HtmlInputSubmit.cs
- Ipv6Element.cs
- GridItemPattern.cs
- XamlPathDataSerializer.cs
- RuntimeWrappedException.cs
- OperationAbortedException.cs
- grammarelement.cs
- XmlDownloadManager.cs
- HttpListenerException.cs
- XmlIlGenerator.cs
- FileDetails.cs
- EmptyReadOnlyDictionaryInternal.cs
- AnimationException.cs
- metrodevice.cs
- SchemaNotation.cs
- DetailsViewUpdatedEventArgs.cs
- TypeDescriptorFilterService.cs
- FunctionDetailsReader.cs
- SrgsRule.cs
- WebPartRestoreVerb.cs
- MailMessage.cs
- ObjectStateFormatter.cs
- ReadOnlyAttribute.cs
- LeaseManager.cs
- LinqDataSourceView.cs
- EvidenceBase.cs
- SymbolMethod.cs
- CacheChildrenQuery.cs
- StateMachineSubscription.cs
- EntityUtil.cs
- BindableAttribute.cs
- CacheSection.cs
- DebuggerAttributes.cs
- StylusEventArgs.cs
- SafeViewOfFileHandle.cs
- DataGridViewMethods.cs
- SchemaTableOptionalColumn.cs
- ModelService.cs
- AppDomainAttributes.cs
- BitSet.cs
- TypedTableGenerator.cs
- Clock.cs
- XmlSerializableWriter.cs
- TransactionScope.cs
- MexNamedPipeBindingElement.cs
- OdbcDataReader.cs
- EntityDataSourceView.cs
- InlineCollection.cs
- CommentEmitter.cs
- QueryableFilterUserControl.cs
- MappingException.cs
- RtfControlWordInfo.cs
- DBConcurrencyException.cs
- BitmapSizeOptions.cs
- ThreadSafeList.cs
- BordersPage.cs
- SqlBuffer.cs
- HtmlInputHidden.cs
- WizardForm.cs
- DataSourceIDConverter.cs
- CriticalHandle.cs
- ComEventsInfo.cs
- ProxyFragment.cs
- PresentationAppDomainManager.cs
- CompilerScopeManager.cs
- TwoPhaseCommit.cs
- RegionData.cs