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
- SiblingIterators.cs
- CompiledWorkflowDefinitionContext.cs
- PropertyChangedEventArgs.cs
- ExpressionBindingCollection.cs
- CardSpaceSelector.cs
- Win32Exception.cs
- Pen.cs
- DebugController.cs
- FilterQueryOptionExpression.cs
- ProgressBarBrushConverter.cs
- TriggerActionCollection.cs
- GeneralTransform.cs
- TextSelectionHighlightLayer.cs
- LinearKeyFrames.cs
- QilCloneVisitor.cs
- DBBindings.cs
- AnonymousIdentificationSection.cs
- ContainsRowNumberChecker.cs
- SolidBrush.cs
- IdleTimeoutMonitor.cs
- NativeCppClassAttribute.cs
- ImageConverter.cs
- CorrelationKey.cs
- EdmError.cs
- CaseKeyBox.xaml.cs
- mactripleDES.cs
- GenericNameHandler.cs
- ServiceOperationParameter.cs
- CustomBindingElement.cs
- RubberbandSelector.cs
- BamlBinaryWriter.cs
- DesignTimeXamlWriter.cs
- XmlSerializer.cs
- WebPartEventArgs.cs
- OdbcErrorCollection.cs
- XmlNamedNodeMap.cs
- DrawingContextDrawingContextWalker.cs
- FormattedTextSymbols.cs
- SecurityContext.cs
- ReflectionHelper.cs
- MULTI_QI.cs
- ExtendedPropertyCollection.cs
- SequenceDesigner.cs
- XmlSchemaAnnotated.cs
- Number.cs
- ConfigurationErrorsException.cs
- StorageAssociationTypeMapping.cs
- ListViewSortEventArgs.cs
- CompoundFileIOPermission.cs
- Parameter.cs
- ExceptionWrapper.cs
- SizeLimitedCache.cs
- CodeCommentStatementCollection.cs
- MailWriter.cs
- StreamWithDictionary.cs
- UpdateTracker.cs
- GridViewRowCollection.cs
- IndentedWriter.cs
- MatchingStyle.cs
- ProjectionPlanCompiler.cs
- ElementUtil.cs
- Baml2006KeyRecord.cs
- DataGridBoundColumn.cs
- XmlSchemaComplexContentExtension.cs
- ZipPackage.cs
- MergeFailedEvent.cs
- messageonlyhwndwrapper.cs
- Latin1Encoding.cs
- ConditionedDesigner.cs
- ViewValidator.cs
- BamlLocalizableResource.cs
- HttpHandlersSection.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- Stack.cs
- SpeakProgressEventArgs.cs
- FamilyCollection.cs
- WorkflowOperationAsyncResult.cs
- CatchBlock.cs
- CodeTypeReference.cs
- SpoolingTaskBase.cs
- ListBindingHelper.cs
- SystemPens.cs
- ObjectDataSourceEventArgs.cs
- CaseInsensitiveComparer.cs
- Literal.cs
- SiteMapHierarchicalDataSourceView.cs
- PageParser.cs
- Int32RectValueSerializer.cs
- UnsafeNativeMethods.cs
- ItemList.cs
- PageThemeCodeDomTreeGenerator.cs
- FontFaceLayoutInfo.cs
- IPEndPointCollection.cs
- Size3DValueSerializer.cs
- WebZone.cs
- AppSettingsExpressionBuilder.cs
- MenuItemStyle.cs
- XmlUrlResolver.cs
- SubpageParaClient.cs
- XmlSubtreeReader.cs