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
- ToolStripPanelSelectionBehavior.cs
- SoapServerMessage.cs
- VectorCollectionConverter.cs
- EventLogInternal.cs
- WebPartDisplayModeCancelEventArgs.cs
- Color.cs
- GiveFeedbackEventArgs.cs
- CookielessHelper.cs
- JsonReader.cs
- DataControlFieldHeaderCell.cs
- PerformanceCounterPermissionEntryCollection.cs
- oledbconnectionstring.cs
- COM2ICategorizePropertiesHandler.cs
- WebConfigurationManager.cs
- OledbConnectionStringbuilder.cs
- RepeatBehaviorConverter.cs
- TypeDescriptor.cs
- RealizationContext.cs
- ProcessThread.cs
- ListControlBoundActionList.cs
- ChannelSinkStacks.cs
- WaitHandleCannotBeOpenedException.cs
- AliasExpr.cs
- TabControlEvent.cs
- SQLMoney.cs
- BackgroundWorker.cs
- PersonalizationDictionary.cs
- precedingsibling.cs
- EntityContainerEmitter.cs
- ListViewSelectEventArgs.cs
- ReadContentAsBinaryHelper.cs
- DashStyles.cs
- StrongNameMembershipCondition.cs
- MailMessageEventArgs.cs
- HostedTransportConfigurationManager.cs
- RemoveStoryboard.cs
- TraceHwndHost.cs
- UrlMappingsSection.cs
- BulletedList.cs
- MsdtcWrapper.cs
- HttpCapabilitiesSectionHandler.cs
- PackWebResponse.cs
- PropertyRecord.cs
- SoapConverter.cs
- XsdDateTime.cs
- SafeNativeMethods.cs
- HostingEnvironmentSection.cs
- AssemblyHash.cs
- CodeChecksumPragma.cs
- TransformConverter.cs
- CombinedGeometry.cs
- DateTimeConstantAttribute.cs
- KerberosSecurityTokenProvider.cs
- Attributes.cs
- ToolTip.cs
- remotingproxy.cs
- safex509handles.cs
- InkCanvas.cs
- SettingsBindableAttribute.cs
- ThemeableAttribute.cs
- WsiProfilesElement.cs
- DecoderReplacementFallback.cs
- DbProviderFactories.cs
- CalculatedColumn.cs
- HwndSourceParameters.cs
- CommonObjectSecurity.cs
- ConcurrencyBehavior.cs
- WebConfigurationManager.cs
- BlockCollection.cs
- SessionIDManager.cs
- TrustLevelCollection.cs
- dtdvalidator.cs
- FloaterBaseParagraph.cs
- DateTimeParse.cs
- FillRuleValidation.cs
- CursorInteropHelper.cs
- AmbientLight.cs
- PixelFormats.cs
- StyleSelector.cs
- HttpChannelListener.cs
- DesignerObjectListAdapter.cs
- CodeSnippetCompileUnit.cs
- BaseInfoTable.cs
- DtdParser.cs
- ConstrainedGroup.cs
- SafeIUnknown.cs
- HwndSource.cs
- CornerRadius.cs
- StylusPointPropertyInfoDefaults.cs
- Pen.cs
- XmlSerializerAssemblyAttribute.cs
- HttpCookiesSection.cs
- FileLogRecordEnumerator.cs
- C14NUtil.cs
- BamlTreeNode.cs
- StatusBar.cs
- WebHttpEndpoint.cs
- TransformFinalBlockRequest.cs
- PackageStore.cs
- AttributeCollection.cs