Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / 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 : benwest - 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. //---------------------------------------------------------------------------- // // File: PropertyRecord.cs // // Description: DependencyProperty/value pair struct used by TextContainer undo. // // History: // 03/03/2004 : benwest - 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
- XmlDocument.cs
- ActionNotSupportedException.cs
- FixedSOMPageElement.cs
- NavigationService.cs
- CompositeDispatchFormatter.cs
- WebPartEventArgs.cs
- Part.cs
- COM2PictureConverter.cs
- BridgeDataReader.cs
- HttpPostedFileWrapper.cs
- RegexParser.cs
- Identity.cs
- util.cs
- XslCompiledTransform.cs
- DataBoundLiteralControl.cs
- CodeAccessSecurityEngine.cs
- ScalarRestriction.cs
- WebBrowser.cs
- DataGridrowEditEndingEventArgs.cs
- TabControlEvent.cs
- ProcessManager.cs
- CodeTypeReferenceExpression.cs
- ListViewItem.cs
- HttpApplicationStateBase.cs
- PropertyGridCommands.cs
- Rfc2898DeriveBytes.cs
- DispatcherOperation.cs
- PolyBezierSegment.cs
- entityreference_tresulttype.cs
- GradientBrush.cs
- FontCacheLogic.cs
- StyleXamlTreeBuilder.cs
- Policy.cs
- UnsafeNativeMethods.cs
- EntityDesignerDataSourceView.cs
- XamlTreeBuilderBamlRecordWriter.cs
- ResXFileRef.cs
- ListBindingConverter.cs
- ToolboxItemSnapLineBehavior.cs
- MissingManifestResourceException.cs
- Error.cs
- AssemblyCache.cs
- PopupEventArgs.cs
- BlockUIContainer.cs
- Pair.cs
- DataGridViewLayoutData.cs
- HtmlControl.cs
- initElementDictionary.cs
- EmptyImpersonationContext.cs
- WebPart.cs
- HierarchicalDataSourceControl.cs
- EntityDataSourceDesignerHelper.cs
- RuleSet.cs
- Menu.cs
- Rectangle.cs
- SubpageParaClient.cs
- RadioButtonList.cs
- DrawingAttributeSerializer.cs
- EncryptedType.cs
- NativeWindow.cs
- MarshalDirectiveException.cs
- KeyConverter.cs
- BindingGroup.cs
- Base64Encoder.cs
- Task.cs
- WorkingDirectoryEditor.cs
- DispatcherHooks.cs
- SqlCacheDependencySection.cs
- ClientProxyGenerator.cs
- BoundColumn.cs
- MaskInputRejectedEventArgs.cs
- StaticTextPointer.cs
- WebBrowserNavigatingEventHandler.cs
- CharConverter.cs
- AspCompat.cs
- RelatedEnd.cs
- ColorPalette.cs
- PathNode.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- SqlInternalConnectionSmi.cs
- EditorPartCollection.cs
- Operand.cs
- MemberRelationshipService.cs
- Symbol.cs
- ListParaClient.cs
- HandlerWithFactory.cs
- DataSourceExpressionCollection.cs
- TextEditorMouse.cs
- XPathNavigatorKeyComparer.cs
- UserControlAutomationPeer.cs
- XmlSiteMapProvider.cs
- EmbeddedMailObjectsCollection.cs
- NavigationCommands.cs
- PreservationFileWriter.cs
- XmlNamespaceMappingCollection.cs
- MdImport.cs
- DataGridViewColumnEventArgs.cs
- BindableTemplateBuilder.cs
- PropertyItem.cs
- SqlRowUpdatingEvent.cs