Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / MS / Internal / ObservableCollectionDefaultValueFactory.cs / 1305600 / ObservableCollectionDefaultValueFactory.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: DefaultvalueFactory for ObservableCollection // // History: // 2009/24/07 : [....] - Created. // //--------------------------------------------------------------------------- using MS.Internal.WindowsBase; using System; using System.Diagnostics; using System.Windows; using System.Collections.ObjectModel; // ObservableCollection using System.Collections.Specialized; // NotifyCollectionChangedEventHandler namespace MS.Internal { //// ObservableCollectionDefaultValueFactory is a DefaultValueFactory implementation which will // promote the default value to a local value if the collection is modified. // [FriendAccessAllowed] // built into Base, used by Framework internal class ObservableCollectionDefaultValueFactory: DefaultValueFactory { internal ObservableCollectionDefaultValueFactory() { _default = new ObservableCollection (); } /// /// This is used for Sealed objects. ObservableCollections are inherently mutable, so they shouldn't /// be used with sealed objects. The PropertyDescriptor calls this, so we'll just return the same empty collection. /// internal override object DefaultValue { get { return _default; } } ////// internal override object CreateDefaultValue(DependencyObject owner, DependencyProperty property) { Debug.Assert(owner != null && property != null, "It is the caller responsibility to ensure that owner and property are non-null."); var result = new ObservableCollection(); // Wire up a ObservableCollectionDefaultPromoter to observe the default value we // just created and automatically promote it to local if it is modified. // NOTE: We do not holding a reference to this because it should have the same lifetime as // the collection. It will not be immediately GC'ed because it hooks the collections change event. new ObservableCollectionDefaultPromoter(owner, property, result); return result; } /// /// The ObservableCollectionDefaultPromoter observes the mutable defaults we hand out /// for changed events. If the default is ever modified this class will /// promote it to a local value by writing it to the local store and /// clear the cached default value so we will generate a new default /// the next time the property system is asked for one. /// private class ObservableCollectionDefaultPromoter { internal ObservableCollectionDefaultPromoter(DependencyObject owner, DependencyProperty property, ObservableCollectioncollection) { Debug.Assert(owner != null && property != null, "Caller is responsible for ensuring that owner and property are non-null."); Debug.Assert(property.GetMetadata(owner.DependencyObjectType).UsingDefaultValueFactory, "How did we end up observing a mutable if we were not registered for the factory pattern?"); // We hang on to the property and owner so we can write the default // value back to the local store if it changes. See also // OnDefaultValueChanged. _owner = owner; _property = property; _collection = collection; _collection.CollectionChanged += OnDefaultValueChanged; } internal void OnDefaultValueChanged(object sender, NotifyCollectionChangedEventArgs e) { PropertyMetadata metadata = _property.GetMetadata(_owner.DependencyObjectType); // Remove this value from the DefaultValue cache so we stop // handing it out as the default value now that it has changed. metadata.ClearCachedDefaultValue(_owner, _property); // If someone else hasn't already written a local value, // promote the default value to local. if (_owner.ReadLocalValue(_property) == DependencyProperty.UnsetValue) { // Read-only properties must be set using the Key if (_property.ReadOnly) { _owner.SetValue(_property.DependencyPropertyKey, _collection); } else { _owner.SetValue(_property, _collection); } } // Unhook the change handler because we're finsihed promoting _collection.CollectionChanged -= OnDefaultValueChanged; } private readonly DependencyObject _owner; private readonly DependencyProperty _property; private readonly ObservableCollection _collection; } private ObservableCollection _default; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // // Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: DefaultvalueFactory for ObservableCollection // // History: // 2009/24/07 : [....] - Created. // //--------------------------------------------------------------------------- using MS.Internal.WindowsBase; using System; using System.Diagnostics; using System.Windows; using System.Collections.ObjectModel; // ObservableCollection using System.Collections.Specialized; // NotifyCollectionChangedEventHandler namespace MS.Internal { //// ObservableCollectionDefaultValueFactory is a DefaultValueFactory implementation which will // promote the default value to a local value if the collection is modified. // [FriendAccessAllowed] // built into Base, used by Framework internal class ObservableCollectionDefaultValueFactory: DefaultValueFactory { internal ObservableCollectionDefaultValueFactory() { _default = new ObservableCollection (); } /// /// This is used for Sealed objects. ObservableCollections are inherently mutable, so they shouldn't /// be used with sealed objects. The PropertyDescriptor calls this, so we'll just return the same empty collection. /// internal override object DefaultValue { get { return _default; } } ////// internal override object CreateDefaultValue(DependencyObject owner, DependencyProperty property) { Debug.Assert(owner != null && property != null, "It is the caller responsibility to ensure that owner and property are non-null."); var result = new ObservableCollection(); // Wire up a ObservableCollectionDefaultPromoter to observe the default value we // just created and automatically promote it to local if it is modified. // NOTE: We do not holding a reference to this because it should have the same lifetime as // the collection. It will not be immediately GC'ed because it hooks the collections change event. new ObservableCollectionDefaultPromoter(owner, property, result); return result; } /// /// The ObservableCollectionDefaultPromoter observes the mutable defaults we hand out /// for changed events. If the default is ever modified this class will /// promote it to a local value by writing it to the local store and /// clear the cached default value so we will generate a new default /// the next time the property system is asked for one. /// private class ObservableCollectionDefaultPromoter { internal ObservableCollectionDefaultPromoter(DependencyObject owner, DependencyProperty property, ObservableCollectioncollection) { Debug.Assert(owner != null && property != null, "Caller is responsible for ensuring that owner and property are non-null."); Debug.Assert(property.GetMetadata(owner.DependencyObjectType).UsingDefaultValueFactory, "How did we end up observing a mutable if we were not registered for the factory pattern?"); // We hang on to the property and owner so we can write the default // value back to the local store if it changes. See also // OnDefaultValueChanged. _owner = owner; _property = property; _collection = collection; _collection.CollectionChanged += OnDefaultValueChanged; } internal void OnDefaultValueChanged(object sender, NotifyCollectionChangedEventArgs e) { PropertyMetadata metadata = _property.GetMetadata(_owner.DependencyObjectType); // Remove this value from the DefaultValue cache so we stop // handing it out as the default value now that it has changed. metadata.ClearCachedDefaultValue(_owner, _property); // If someone else hasn't already written a local value, // promote the default value to local. if (_owner.ReadLocalValue(_property) == DependencyProperty.UnsetValue) { // Read-only properties must be set using the Key if (_property.ReadOnly) { _owner.SetValue(_property.DependencyPropertyKey, _collection); } else { _owner.SetValue(_property, _collection); } } // Unhook the change handler because we're finsihed promoting _collection.CollectionChanged -= OnDefaultValueChanged; } private readonly DependencyObject _owner; private readonly DependencyProperty _property; private readonly ObservableCollection _collection; } private ObservableCollection _default; } } // 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
- ProvidersHelper.cs
- BinaryNode.cs
- ElementProxy.cs
- AuthorizationSection.cs
- PropertyDescriptor.cs
- DataReceivedEventArgs.cs
- PriorityRange.cs
- ContextInformation.cs
- SymmetricAlgorithm.cs
- BitmapEffectInput.cs
- CodeValidator.cs
- AuthenticationService.cs
- WebRequestModulesSection.cs
- XsdCachingReader.cs
- FileDialog.cs
- RegularExpressionValidator.cs
- IteratorFilter.cs
- MouseButton.cs
- WorkflowLayouts.cs
- PropertyStore.cs
- ISCIIEncoding.cs
- ImageKeyConverter.cs
- VirtualDirectoryMappingCollection.cs
- InkSerializer.cs
- DataServiceRequest.cs
- SerializationUtilities.cs
- PersistenceException.cs
- BinaryObjectWriter.cs
- ControlAdapter.cs
- RightsManagementProvider.cs
- SchemaObjectWriter.cs
- XmlSerializerFactory.cs
- UnsafeCollabNativeMethods.cs
- NameValuePair.cs
- JsonUriDataContract.cs
- ImageMapEventArgs.cs
- WsdlInspector.cs
- Oci.cs
- PageCodeDomTreeGenerator.cs
- NameValueConfigurationElement.cs
- UnmanagedMarshal.cs
- Schema.cs
- HitTestFilterBehavior.cs
- ToolStripItemClickedEventArgs.cs
- NamedPermissionSet.cs
- CodeTypeReferenceCollection.cs
- ThicknessAnimation.cs
- JsonReader.cs
- SymDocumentType.cs
- BaseDataListComponentEditor.cs
- RowToParametersTransformer.cs
- FrameAutomationPeer.cs
- Hashtable.cs
- UrlUtility.cs
- HistoryEventArgs.cs
- HttpStreamFormatter.cs
- UInt64Converter.cs
- BaseCollection.cs
- XPathNodeInfoAtom.cs
- IisTraceWebEventProvider.cs
- LocatorPart.cs
- DependencyProperty.cs
- RegistrationServices.cs
- ContentType.cs
- CodeGen.cs
- Compiler.cs
- sqlpipe.cs
- InputMethodStateChangeEventArgs.cs
- XmlCharCheckingWriter.cs
- XmlSchemaValidator.cs
- RequestBringIntoViewEventArgs.cs
- GeometryGroup.cs
- JpegBitmapEncoder.cs
- SearchForVirtualItemEventArgs.cs
- AssemblyName.cs
- ToolStripSystemRenderer.cs
- ComponentRenameEvent.cs
- LogicalExpr.cs
- EntityDataSourceContainerNameConverter.cs
- DateTimeConstantAttribute.cs
- PointAnimationClockResource.cs
- SerializationHelper.cs
- DataGridTable.cs
- ObjectConverter.cs
- TaskDesigner.cs
- XmlRootAttribute.cs
- activationcontext.cs
- ContainsSearchOperator.cs
- GetIndexBinder.cs
- Clipboard.cs
- EventInfo.cs
- RadioButton.cs
- DetailsViewUpdateEventArgs.cs
- CodeTypeDeclaration.cs
- UInt16Converter.cs
- ProjectionPathSegment.cs
- CalculatedColumn.cs
- SegmentInfo.cs
- recordstatefactory.cs
- ToolboxItemCollection.cs