Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / MS / Internal / Ink / StrokeCollectionDefaultValueFactory.cs / 1305600 / StrokeCollectionDefaultValueFactory.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: DefaultValueFactory for StrokeCollection // // History: // 2006/01/24 : waynezen - Created // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Windows; using System.Windows.Controls; using System.Windows.Ink; namespace MS.Internal.Ink { internal class StrokeCollectionDefaultValueFactory : DefaultValueFactory { internal StrokeCollectionDefaultValueFactory() { } ////// Returns an "immutable" default value. Since we can't make the default value /// read only we'll return a new one every time. /// internal override object DefaultValue { get { return new StrokeCollection(); } } ////// Creates a mutable default value /// internal override object CreateDefaultValue(DependencyObject owner, DependencyProperty property) { Debug.Assert(property.PropertyType == typeof(StrokeCollection), string.Format(System.Globalization.CultureInfo.InvariantCulture, "The DependencyProperty {0} has to be type of StrokeCollection.", property)); // Instantiate our default value instance. StrokeCollection defaultValue = new StrokeCollection(); // Add event handlers for tracking the changes on the default value instance. StrokeCollectionDefaultPromoter promoter = new StrokeCollectionDefaultPromoter(owner, property); defaultValue.StrokesChanged += new StrokeCollectionChangedEventHandler(promoter.OnStrokeCollectionChanged); defaultValue.PropertyDataChanged += new PropertyDataChangedEventHandler(promoter.OnStrokeCollectionChanged ); return defaultValue; } /// /// A tracking class which monitors any changes on StrokeCollection /// private class StrokeCollectionDefaultPromoter { ////// Constructor /// /// /// internal StrokeCollectionDefaultPromoter(DependencyObject owner, DependencyProperty property) { _owner = owner; _dependencyProperty = property; } ////// A handler for both AttributeChanged and PropertyDataChanged. /// /// /// internal void OnStrokeCollectionChanged(object sender, TEventArgs e) { StrokeCollection value = (StrokeCollection)sender; // The current instance will be promoted to the local value other than the default value. // Then we could just remove our handlers to stop tracking. value.StrokesChanged -= new StrokeCollectionChangedEventHandler(OnStrokeCollectionChanged ); value.PropertyDataChanged -= new PropertyDataChangedEventHandler(OnStrokeCollectionChanged ); // NTRAID#WINDOWS-1334059-2005/10/17-waynezen, // We only promote the value when there is no local value set yet. if ( _owner.ReadLocalValue(_dependencyProperty) == DependencyProperty.UnsetValue ) { // Promote the instance to the local value. _owner.SetValue(_dependencyProperty, value); } // Remove this value from the DefaultValue cache so we stop // handing it out as the default value now that it has changed. PropertyMetadata metadata = _dependencyProperty.GetMetadata(_owner.DependencyObjectType); metadata.ClearCachedDefaultValue(_owner, _dependencyProperty); } private readonly DependencyObject _owner; private readonly DependencyProperty _dependencyProperty; } } } // 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 StrokeCollection // // History: // 2006/01/24 : waynezen - Created // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Windows; using System.Windows.Controls; using System.Windows.Ink; namespace MS.Internal.Ink { internal class StrokeCollectionDefaultValueFactory : DefaultValueFactory { internal StrokeCollectionDefaultValueFactory() { } ////// Returns an "immutable" default value. Since we can't make the default value /// read only we'll return a new one every time. /// internal override object DefaultValue { get { return new StrokeCollection(); } } ////// Creates a mutable default value /// internal override object CreateDefaultValue(DependencyObject owner, DependencyProperty property) { Debug.Assert(property.PropertyType == typeof(StrokeCollection), string.Format(System.Globalization.CultureInfo.InvariantCulture, "The DependencyProperty {0} has to be type of StrokeCollection.", property)); // Instantiate our default value instance. StrokeCollection defaultValue = new StrokeCollection(); // Add event handlers for tracking the changes on the default value instance. StrokeCollectionDefaultPromoter promoter = new StrokeCollectionDefaultPromoter(owner, property); defaultValue.StrokesChanged += new StrokeCollectionChangedEventHandler(promoter.OnStrokeCollectionChanged); defaultValue.PropertyDataChanged += new PropertyDataChangedEventHandler(promoter.OnStrokeCollectionChanged ); return defaultValue; } /// /// A tracking class which monitors any changes on StrokeCollection /// private class StrokeCollectionDefaultPromoter { ////// Constructor /// /// /// internal StrokeCollectionDefaultPromoter(DependencyObject owner, DependencyProperty property) { _owner = owner; _dependencyProperty = property; } ////// A handler for both AttributeChanged and PropertyDataChanged. /// /// /// internal void OnStrokeCollectionChanged(object sender, TEventArgs e) { StrokeCollection value = (StrokeCollection)sender; // The current instance will be promoted to the local value other than the default value. // Then we could just remove our handlers to stop tracking. value.StrokesChanged -= new StrokeCollectionChangedEventHandler(OnStrokeCollectionChanged ); value.PropertyDataChanged -= new PropertyDataChangedEventHandler(OnStrokeCollectionChanged ); // NTRAID#WINDOWS-1334059-2005/10/17-waynezen, // We only promote the value when there is no local value set yet. if ( _owner.ReadLocalValue(_dependencyProperty) == DependencyProperty.UnsetValue ) { // Promote the instance to the local value. _owner.SetValue(_dependencyProperty, value); } // Remove this value from the DefaultValue cache so we stop // handing it out as the default value now that it has changed. PropertyMetadata metadata = _dependencyProperty.GetMetadata(_owner.DependencyObjectType); metadata.ClearCachedDefaultValue(_owner, _dependencyProperty); } private readonly DependencyObject _owner; private readonly DependencyProperty _dependencyProperty; } } } // 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
- TextElementEnumerator.cs
- DateTimePickerDesigner.cs
- MouseActionConverter.cs
- DataSetUtil.cs
- EventMap.cs
- SystemTcpStatistics.cs
- SoapClientProtocol.cs
- Variant.cs
- HyperlinkAutomationPeer.cs
- HostDesigntimeLicenseContext.cs
- WebResourceAttribute.cs
- HtmlInputSubmit.cs
- COM2ExtendedBrowsingHandler.cs
- DocumentGrid.cs
- XmlWriter.cs
- DiscardableAttribute.cs
- SettingsBindableAttribute.cs
- DiscreteKeyFrames.cs
- SQLConvert.cs
- ZipIOFileItemStream.cs
- DrawingGroupDrawingContext.cs
- SafeIUnknown.cs
- WindowsFormsHostAutomationPeer.cs
- ConfigurationConverterBase.cs
- UIElementParaClient.cs
- SqlDataSourceCommandEventArgs.cs
- CacheDependency.cs
- NonSerializedAttribute.cs
- SchemaElement.cs
- BitmapCacheBrush.cs
- Blend.cs
- ValidatingReaderNodeData.cs
- ProofTokenCryptoHandle.cs
- TypefaceMetricsCache.cs
- UInt32.cs
- ToolboxBitmapAttribute.cs
- HttpResponse.cs
- OracleParameterBinding.cs
- MatchingStyle.cs
- TextRangeEditLists.cs
- CallSiteBinder.cs
- ConnectorDragDropGlyph.cs
- AppDomainGrammarProxy.cs
- LinqExpressionNormalizer.cs
- RadioButtonFlatAdapter.cs
- ProjectionAnalyzer.cs
- SQLConvert.cs
- TokenizerHelper.cs
- Avt.cs
- DataGridTable.cs
- RemoteTokenFactory.cs
- TablePattern.cs
- Propagator.ExtentPlaceholderCreator.cs
- EntityCommandExecutionException.cs
- ItemList.cs
- DbMetaDataCollectionNames.cs
- MessageQueueKey.cs
- FeatureManager.cs
- MetadataArtifactLoaderResource.cs
- CfgParser.cs
- Int32AnimationBase.cs
- MetadataItem_Static.cs
- SslStream.cs
- WMIInterop.cs
- TextProperties.cs
- XamlPoint3DCollectionSerializer.cs
- WebProxyScriptElement.cs
- SQLResource.cs
- FlowLayoutPanel.cs
- WmlPageAdapter.cs
- TextEmbeddedObject.cs
- _SecureChannel.cs
- ComplexType.cs
- BitmapEffectRenderDataResource.cs
- Delegate.cs
- PeerNearMe.cs
- GridViewSelectEventArgs.cs
- TextSegment.cs
- ErrorFormatter.cs
- OdbcEnvironment.cs
- StorageModelBuildProvider.cs
- CancellationHandlerDesigner.cs
- Grid.cs
- CursorConverter.cs
- FreezableCollection.cs
- FileLoadException.cs
- StringCollection.cs
- GridProviderWrapper.cs
- BuildResult.cs
- ResXResourceSet.cs
- LocalizabilityAttribute.cs
- X509CertificateCollection.cs
- ApplicationFileParser.cs
- _ScatterGatherBuffers.cs
- TriggerBase.cs
- Setter.cs
- NamespaceList.cs
- GridViewHeaderRowPresenter.cs
- PagesChangedEventArgs.cs
- SrgsElementFactory.cs