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
- AvTraceDetails.cs
- OdbcTransaction.cs
- ClientTargetSection.cs
- RotateTransform.cs
- ToolStripLabel.cs
- DesignerSerializationVisibilityAttribute.cs
- WrappedReader.cs
- ProfessionalColors.cs
- CmsInterop.cs
- RepeaterCommandEventArgs.cs
- FixedStringLookup.cs
- BinaryFormatterWriter.cs
- CachingHintValidation.cs
- DataObjectMethodAttribute.cs
- LinkClickEvent.cs
- DocComment.cs
- ServerValidateEventArgs.cs
- StandardRuntimeEnumValidatorAttribute.cs
- DBSchemaTable.cs
- PropertyGrid.cs
- RepeaterItem.cs
- WebException.cs
- ColumnMapVisitor.cs
- ErrorFormatter.cs
- PartDesigner.cs
- XPSSignatureDefinition.cs
- ExceptionHandlerDesigner.cs
- StateMachineWorkflow.cs
- SslStreamSecurityUpgradeProvider.cs
- DataServices.cs
- WebBrowsableAttribute.cs
- NetTcpBindingCollectionElement.cs
- Style.cs
- AccessDataSource.cs
- FieldNameLookup.cs
- ControlIdConverter.cs
- XmlNotation.cs
- MetadataUtil.cs
- CapabilitiesRule.cs
- RuleSetCollection.cs
- DbConnectionPoolOptions.cs
- LocalValueEnumerator.cs
- x509utils.cs
- UidManager.cs
- ScheduleChanges.cs
- TogglePatternIdentifiers.cs
- DisableDpiAwarenessAttribute.cs
- IntSecurity.cs
- EventPrivateKey.cs
- XPathScanner.cs
- WmlObjectListAdapter.cs
- HtmlInputImage.cs
- CleanUpVirtualizedItemEventArgs.cs
- XmlStreamStore.cs
- _emptywebproxy.cs
- EncodingNLS.cs
- DictionaryCustomTypeDescriptor.cs
- MarkupObject.cs
- DbParameterHelper.cs
- TextRunCache.cs
- SlipBehavior.cs
- TemplateInstanceAttribute.cs
- QEncodedStream.cs
- ResponseBodyWriter.cs
- BatchParser.cs
- WorkflowTraceTransfer.cs
- AsyncPostBackTrigger.cs
- IntellisenseTextBox.designer.cs
- XmlQueryOutput.cs
- Constraint.cs
- Pen.cs
- Latin1Encoding.cs
- FixedSOMFixedBlock.cs
- GridSplitterAutomationPeer.cs
- MetricEntry.cs
- CommandValueSerializer.cs
- DefaultHttpHandler.cs
- ExponentialEase.cs
- ErrorHandler.cs
- Parser.cs
- SEHException.cs
- EventProviderWriter.cs
- RelationshipType.cs
- TypedOperationInfo.cs
- PassportIdentity.cs
- DataGridViewCheckBoxColumn.cs
- BindingObserver.cs
- WebReferencesBuildProvider.cs
- ObjectDataSource.cs
- CompoundFileStreamReference.cs
- BasicHttpMessageSecurity.cs
- PrivilegeNotHeldException.cs
- MetadataItemSerializer.cs
- GlobalEventManager.cs
- XmlExpressionDumper.cs
- StorageComplexTypeMapping.cs
- WorkflowWebHostingModule.cs
- SerializationEventsCache.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- Point4DValueSerializer.cs