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
- _TLSstream.cs
- GridViewColumnHeader.cs
- NewExpression.cs
- BrowserDefinition.cs
- coordinator.cs
- TreeViewHitTestInfo.cs
- ServiceModelConfigurationSection.cs
- LineServicesCallbacks.cs
- ColorComboBox.cs
- ToolboxBitmapAttribute.cs
- SerialPort.cs
- LeaseManager.cs
- DiagnosticsConfiguration.cs
- PtsCache.cs
- ItemContainerGenerator.cs
- SQLRoleProvider.cs
- DebugController.cs
- Stacktrace.cs
- LinearKeyFrames.cs
- HtmlInputButton.cs
- PersistenceTask.cs
- DoubleAnimationBase.cs
- XhtmlBasicFormAdapter.cs
- UnsafeNativeMethods.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- SponsorHelper.cs
- DynamicObject.cs
- GridViewAutomationPeer.cs
- DataGridColumnCollection.cs
- NetworkCredential.cs
- ChtmlLinkAdapter.cs
- DefaultPrintController.cs
- XmlConvert.cs
- HtmlTableRowCollection.cs
- SharedStatics.cs
- OutOfMemoryException.cs
- Screen.cs
- NetworkInformationException.cs
- DrawingCollection.cs
- SignalGate.cs
- CompoundFileReference.cs
- FlowNode.cs
- EnumerationRangeValidationUtil.cs
- OletxEnlistment.cs
- AsymmetricAlgorithm.cs
- PropertyChangingEventArgs.cs
- HostDesigntimeLicenseContext.cs
- RecognizeCompletedEventArgs.cs
- Int32.cs
- BaseCollection.cs
- StructuredType.cs
- GPRECTF.cs
- IBuiltInEvidence.cs
- TagElement.cs
- BinaryFormatter.cs
- CloudCollection.cs
- Propagator.ExtentPlaceholderCreator.cs
- DeploymentExceptionMapper.cs
- AssemblyBuilder.cs
- XmlDocumentFieldSchema.cs
- MatrixStack.cs
- TextRunProperties.cs
- XPathDocumentIterator.cs
- ScaleTransform.cs
- TextFormatterImp.cs
- MessagePropertyDescriptionCollection.cs
- UnsafeNativeMethods.cs
- OraclePermissionAttribute.cs
- UnmanagedMarshal.cs
- CustomErrorsSection.cs
- TypedReference.cs
- ProxyGenerationError.cs
- ArrayList.cs
- CodeAttributeArgument.cs
- KeyFrames.cs
- VisualBrush.cs
- BinHexEncoder.cs
- ThousandthOfEmRealDoubles.cs
- EndpointBehaviorElementCollection.cs
- PublishLicense.cs
- ConfigurationSectionGroupCollection.cs
- DesignOnlyAttribute.cs
- XPathQilFactory.cs
- RuleCache.cs
- TextElementAutomationPeer.cs
- SchemaImporterExtensionElementCollection.cs
- FunctionMappingTranslator.cs
- EdmSchemaAttribute.cs
- SerializationSectionGroup.cs
- Help.cs
- GridEntryCollection.cs
- SafeProcessHandle.cs
- XmlIncludeAttribute.cs
- DateTime.cs
- ProtocolsConfiguration.cs
- LinkClickEvent.cs
- CodeExpressionStatement.cs
- HandledMouseEvent.cs
- FontWeight.cs
- DeferrableContentConverter.cs