Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / PropertyRecord.cs / 1305600 / 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
- CollectionViewProxy.cs
- HyperLinkField.cs
- Input.cs
- HttpContextServiceHost.cs
- BamlResourceContent.cs
- LinqMaximalSubtreeNominator.cs
- BooleanSwitch.cs
- PlatformCulture.cs
- DataSourceCache.cs
- SafeArrayTypeMismatchException.cs
- CommandID.cs
- PasswordTextContainer.cs
- ResolveMatchesMessageCD1.cs
- RenderDataDrawingContext.cs
- DesigntimeLicenseContext.cs
- DescendentsWalkerBase.cs
- CommonGetThemePartSize.cs
- Fonts.cs
- FormatterServices.cs
- TypeBuilderInstantiation.cs
- SimpleMailWebEventProvider.cs
- PointValueSerializer.cs
- TreeNodeStyle.cs
- DataPagerFieldItem.cs
- Opcode.cs
- RawKeyboardInputReport.cs
- EventDescriptor.cs
- TraceContextEventArgs.cs
- DesignerActionVerbList.cs
- BoolLiteral.cs
- InstanceCollisionException.cs
- ReadOnlyPropertyMetadata.cs
- ClientScriptManagerWrapper.cs
- ZoneLinkButton.cs
- CardSpacePolicyElement.cs
- FontConverter.cs
- ZoneButton.cs
- GridViewCancelEditEventArgs.cs
- XmlEntityReference.cs
- SourceSwitch.cs
- ListViewItemSelectionChangedEvent.cs
- XPathNodePointer.cs
- ListManagerBindingsCollection.cs
- ProfileParameter.cs
- CacheAxisQuery.cs
- PageClientProxyGenerator.cs
- ToolboxComponentsCreatedEventArgs.cs
- TextStore.cs
- DataGridGeneralPage.cs
- MatrixCamera.cs
- DataStreams.cs
- SmtpReplyReader.cs
- TreeNodeStyleCollection.cs
- CompositeScriptReference.cs
- ThicknessAnimationUsingKeyFrames.cs
- PolyBezierSegmentFigureLogic.cs
- AnnotationAdorner.cs
- XsltException.cs
- PrimitiveType.cs
- Component.cs
- SequentialUshortCollection.cs
- SqlCachedBuffer.cs
- _RequestCacheProtocol.cs
- WindowsGrip.cs
- dataobject.cs
- ResourceAssociationType.cs
- PageTheme.cs
- FixedSOMElement.cs
- XmlAggregates.cs
- WebBrowserSiteBase.cs
- ServiceModelReg.cs
- DelegateTypeInfo.cs
- RichTextBoxAutomationPeer.cs
- AssemblyBuilderData.cs
- _NetworkingPerfCounters.cs
- MonthCalendarDesigner.cs
- CommonDialog.cs
- ServiceDescription.cs
- HtmlInputControl.cs
- DropDownList.cs
- InstanceKeyNotReadyException.cs
- StringConverter.cs
- DesignerCategoryAttribute.cs
- Fault.cs
- ResetableIterator.cs
- BindableTemplateBuilder.cs
- _DomainName.cs
- IsolationInterop.cs
- ScriptComponentDescriptor.cs
- Int64.cs
- ListenerAdaptersInstallComponent.cs
- QueryCoreOp.cs
- WebPartCancelEventArgs.cs
- xmlglyphRunInfo.cs
- DataPagerField.cs
- MemoryMappedView.cs
- TypeUtil.cs
- Renderer.cs
- CommandExpr.cs
- ByteRangeDownloader.cs