Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / InheritablePropertyChangeInfo.cs / 1305600 / InheritablePropertyChangeInfo.cs
//---------------------------------------------------------------------------- // // File: InheritablePropertyChangeInfo.cs // // Description: // This data-structure is used // 1. As the data that is passed around by the DescendentsWalker // during an inheritable property change tree-walk. // // Copyright (C) by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace System.Windows { ////// This is the data that is passed through the DescendentsWalker /// during an inheritable property change tree-walk. /// internal struct InheritablePropertyChangeInfo { #region Constructors internal InheritablePropertyChangeInfo( DependencyProperty property, EffectiveValueEntry oldEntry, EffectiveValueEntry newEntry) { _property = property; _oldEntry = oldEntry; _newEntry = newEntry; } #endregion Constructors #region Properties internal DependencyProperty Property { get { return _property; } } internal EffectiveValueEntry OldEntry { get { return _oldEntry; } } internal EffectiveValueEntry NewEntry { get { return _newEntry; } } #endregion Properties #region Data private DependencyProperty _property; private EffectiveValueEntry _oldEntry; private EffectiveValueEntry _newEntry; #endregion Data } } // 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
- SQLInt64.cs
- TargetParameterCountException.cs
- SctClaimSerializer.cs
- columnmapkeybuilder.cs
- RegisteredScript.cs
- CfgParser.cs
- VolatileEnlistmentState.cs
- JoinQueryOperator.cs
- TableLayoutPanel.cs
- System.Data.OracleClient_BID.cs
- AmbientProperties.cs
- AuthorizationRuleCollection.cs
- ArgumentException.cs
- AnnotationAdorner.cs
- MsmqQueue.cs
- SqlVisitor.cs
- Brush.cs
- SmiTypedGetterSetter.cs
- ExtenderProviderService.cs
- EditorZoneDesigner.cs
- sqlpipe.cs
- MembershipPasswordException.cs
- PolyBezierSegmentFigureLogic.cs
- WizardForm.cs
- UnsafeNativeMethods.cs
- QueueProcessor.cs
- DocumentPageViewAutomationPeer.cs
- IndexingContentUnit.cs
- ListDictionary.cs
- WebPartsPersonalizationAuthorization.cs
- WpfSharedXamlSchemaContext.cs
- WindowsHyperlink.cs
- SoapSchemaMember.cs
- ClientTargetSection.cs
- SapiAttributeParser.cs
- ConfigurationPropertyCollection.cs
- CharUnicodeInfo.cs
- WaitForChangedResult.cs
- AuthenticationModuleElementCollection.cs
- MaskedTextBoxDesigner.cs
- SocketInformation.cs
- TextEffect.cs
- AjaxFrameworkAssemblyAttribute.cs
- WindowsRichEdit.cs
- SelectionItemProviderWrapper.cs
- ScopeElement.cs
- RequestTimeoutManager.cs
- XPathBinder.cs
- DocumentGridContextMenu.cs
- VectorAnimationUsingKeyFrames.cs
- IsolatedStorageException.cs
- SQLByteStorage.cs
- CodeTypeReferenceSerializer.cs
- DataObjectAttribute.cs
- safelinkcollection.cs
- RefType.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- MembershipUser.cs
- WSDualHttpBindingElement.cs
- CurrencyManager.cs
- ViewStateModeByIdAttribute.cs
- MissingSatelliteAssemblyException.cs
- CheckPair.cs
- Publisher.cs
- DetailsViewUpdateEventArgs.cs
- Utilities.cs
- Clipboard.cs
- CodeComment.cs
- XsltContext.cs
- ScrollBarRenderer.cs
- ToolTipAutomationPeer.cs
- XmlAttributeCache.cs
- ValueCollectionParameterReader.cs
- ListSourceHelper.cs
- Vector3DCollection.cs
- CAGDesigner.cs
- ExtensibleClassFactory.cs
- CssClassPropertyAttribute.cs
- ObjectHandle.cs
- XmlSchemaExporter.cs
- BorderGapMaskConverter.cs
- XmlElementList.cs
- PeerPresenceInfo.cs
- IDReferencePropertyAttribute.cs
- SharedConnectionInfo.cs
- CoreSwitches.cs
- DataGridViewCellCollection.cs
- ImplicitInputBrush.cs
- OdbcErrorCollection.cs
- Content.cs
- TraceXPathNavigator.cs
- DataServiceHostFactory.cs
- NavigationPropertyAccessor.cs
- ConstrainedDataObject.cs
- BindingExpression.cs
- GridViewRowPresenter.cs
- RelativeSource.cs
- ProcessHostFactoryHelper.cs
- GlobalAllocSafeHandle.cs
- NameValueFileSectionHandler.cs