Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Documents / PropertyRecord.cs / 1 / PropertyRecord.cs
//----------------------------------------------------------------------------
//
// File: PropertyRecord.cs
//
// Description: DependencyProperty/value pair struct used by TextContainer undo.
//
// History:
// 03/03/2004 : [....] - Created
//
//---------------------------------------------------------------------------
using System;
namespace System.Windows.Documents
{
// This struct records DependencyProperty/value pairs. We use the struct
// extensively because LocalValueEnumerators may not be cached safely.
// It is identical to base's LocalValueEntry except that it adds setters.
internal struct PropertyRecord
{
internal DependencyProperty Property
{
get { return _property; }
set { _property = value; }
}
internal object Value
{
get { return _value; }
set { _value = value; }
}
private DependencyProperty _property;
private object _value;
}
}
// 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
- BitmapDecoder.cs
- RichTextBox.cs
- BinaryConverter.cs
- FormViewActionList.cs
- ListViewGroup.cs
- ValuePatternIdentifiers.cs
- Int32Converter.cs
- StringOutput.cs
- DrawingCollection.cs
- TextChangedEventArgs.cs
- AvTrace.cs
- DesignerActionVerbItem.cs
- HierarchicalDataTemplate.cs
- _AcceptOverlappedAsyncResult.cs
- ObjectPropertyMapping.cs
- DataGridPagingPage.cs
- DataServiceKeyAttribute.cs
- MatrixTransform3D.cs
- RootBrowserWindowProxy.cs
- CatalogPart.cs
- CodeTypeDelegate.cs
- PropertyNames.cs
- PersianCalendar.cs
- ParserOptions.cs
- PropertyValueUIItem.cs
- HttpResponseMessageProperty.cs
- SQLCharsStorage.cs
- SoundPlayer.cs
- CatalogZone.cs
- TokenizerHelper.cs
- DataRowExtensions.cs
- EntityDataSourceSelectingEventArgs.cs
- XmlSignatureProperties.cs
- SponsorHelper.cs
- ClientConfigurationSystem.cs
- RoutingTable.cs
- IncomingWebResponseContext.cs
- CacheDependency.cs
- EventLogEntry.cs
- ControlIdConverter.cs
- PropertyTabAttribute.cs
- SrgsElementList.cs
- ModuleBuilderData.cs
- ActivityDesigner.cs
- InvalidateEvent.cs
- DataGridViewColumn.cs
- COM2IDispatchConverter.cs
- SpellerStatusTable.cs
- MailAddress.cs
- InheritanceRules.cs
- Timer.cs
- CqlGenerator.cs
- ColorMatrix.cs
- MediaElementAutomationPeer.cs
- DataGridViewCellEventArgs.cs
- shaperfactoryquerycachekey.cs
- path.cs
- PolicyException.cs
- _ProxyRegBlob.cs
- _BasicClient.cs
- ByteStack.cs
- updateconfighost.cs
- ClientTargetCollection.cs
- SQLDateTimeStorage.cs
- BulletDecorator.cs
- XmlReaderSettings.cs
- DeleteIndexBinder.cs
- Globals.cs
- GlobalEventManager.cs
- BitmapCodecInfoInternal.cs
- DataRecordInternal.cs
- StrongNameKeyPair.cs
- PolicyManager.cs
- ErrorRuntimeConfig.cs
- TypeConstant.cs
- SqlDataRecord.cs
- DbConnectionOptions.cs
- RowToFieldTransformer.cs
- ContainerVisual.cs
- PropertyCollection.cs
- XmlMtomReader.cs
- KoreanLunisolarCalendar.cs
- LinqExpressionNormalizer.cs
- AccessViolationException.cs
- MaskedTextProvider.cs
- CodeMemberField.cs
- MLangCodePageEncoding.cs
- PostBackOptions.cs
- TripleDES.cs
- GrammarBuilderBase.cs
- PackageStore.cs
- XmlSchemaSimpleContent.cs
- ErrorFormatterPage.cs
- Psha1DerivedKeyGenerator.cs
- UITypeEditor.cs
- TemplateField.cs
- PointConverter.cs
- AspNetSynchronizationContext.cs
- UserControl.cs
- ConfigurationManagerInternalFactory.cs