Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / InheritablePropertyChangeInfo.cs / 1 / 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
- AuthenticationService.cs
- DataControlButton.cs
- messageonlyhwndwrapper.cs
- CapabilitiesUse.cs
- EdmTypeAttribute.cs
- RichListBox.cs
- Timeline.cs
- LiteralControl.cs
- WebException.cs
- RectIndependentAnimationStorage.cs
- RemoteDebugger.cs
- StrongName.cs
- GetWinFXPath.cs
- NativeMethodsOther.cs
- _ProxyChain.cs
- SecurityElement.cs
- ProtectedConfiguration.cs
- SerializationEventsCache.cs
- UpdateTracker.cs
- GatewayIPAddressInformationCollection.cs
- CollectionChange.cs
- CompositeCollectionView.cs
- Semaphore.cs
- XmlSerializerFactory.cs
- DocumentEventArgs.cs
- FormatVersion.cs
- TextRunCache.cs
- FontSourceCollection.cs
- CountAggregationOperator.cs
- AudioBase.cs
- ButtonChrome.cs
- MachineKeySection.cs
- ProtocolsConfiguration.cs
- WebServiceClientProxyGenerator.cs
- DataObjectAttribute.cs
- CommandHelper.cs
- EventToken.cs
- WebEventCodes.cs
- AttributeAction.cs
- IssuedTokenParametersEndpointAddressElement.cs
- DomainConstraint.cs
- elementinformation.cs
- PrintDialog.cs
- Keyboard.cs
- TextureBrush.cs
- DynamicHyperLink.cs
- ByteAnimationBase.cs
- AssemblyContextControlItem.cs
- CardSpaceException.cs
- SessionStateSection.cs
- FontStyleConverter.cs
- _NestedMultipleAsyncResult.cs
- SelectionRangeConverter.cs
- XmlSchemaAppInfo.cs
- RightNameExpirationInfoPair.cs
- PropertyChange.cs
- NetTcpSecurity.cs
- GraphicsPathIterator.cs
- SafeEventHandle.cs
- SkewTransform.cs
- CollectionViewProxy.cs
- EntityReference.cs
- GPRECTF.cs
- OleStrCAMarshaler.cs
- TransformDescriptor.cs
- XmlEntityReference.cs
- DbParameterCollection.cs
- ScriptResourceAttribute.cs
- GridEntry.cs
- TTSEvent.cs
- path.cs
- XmlSchemaInfo.cs
- TypeSystem.cs
- DataRelationPropertyDescriptor.cs
- SchemaHelper.cs
- httpstaticobjectscollection.cs
- SessionEndingCancelEventArgs.cs
- ComponentEditorForm.cs
- EndPoint.cs
- PatternMatcher.cs
- HierarchicalDataSourceControl.cs
- SpeechRecognizer.cs
- ElementAction.cs
- LeftCellWrapper.cs
- ElementNotAvailableException.cs
- ConnectionInterfaceCollection.cs
- ActiveXHost.cs
- EmptyEnumerator.cs
- DataGridPagerStyle.cs
- ExtensionWindowResizeGrip.cs
- Parallel.cs
- HtmlInputReset.cs
- DoubleLinkListEnumerator.cs
- SQLByte.cs
- PenThreadPool.cs
- Opcode.cs
- Mappings.cs
- InfoCardArgumentException.cs
- COM2IManagedPerPropertyBrowsingHandler.cs
- ScriptManagerProxy.cs