Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / MS / Internal / Ink / StrokeCollectionDefaultValueFactory.cs / 1 / 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
- CustomLineCap.cs
- AffineTransform3D.cs
- InstallerTypeAttribute.cs
- LicenseProviderAttribute.cs
- PropertyEmitterBase.cs
- ADRoleFactory.cs
- UnsafeCollabNativeMethods.cs
- RbTree.cs
- AnimatedTypeHelpers.cs
- BuildProvidersCompiler.cs
- DesignerLoader.cs
- RepeaterCommandEventArgs.cs
- Timer.cs
- VarRefManager.cs
- CachedCompositeFamily.cs
- PropertyEmitterBase.cs
- AspNetSynchronizationContext.cs
- NetNamedPipeBinding.cs
- CTreeGenerator.cs
- TreeViewImageIndexConverter.cs
- DbFunctionCommandTree.cs
- Tile.cs
- Propagator.ExtentPlaceholderCreator.cs
- HttpListenerException.cs
- X509Certificate2Collection.cs
- SecurityKeyType.cs
- SpecularMaterial.cs
- DataKey.cs
- LabelLiteral.cs
- SchemaDeclBase.cs
- Panel.cs
- TextBoxBaseDesigner.cs
- DropTarget.cs
- DbConvert.cs
- SerializableAuthorizationContext.cs
- FixedSOMFixedBlock.cs
- DatagridviewDisplayedBandsData.cs
- FamilyTypefaceCollection.cs
- SoapSchemaExporter.cs
- SrgsDocumentParser.cs
- FormViewPageEventArgs.cs
- TextEditorTyping.cs
- ZoneIdentityPermission.cs
- DragDrop.cs
- HuffmanTree.cs
- MenuItemStyleCollection.cs
- View.cs
- RSACryptoServiceProvider.cs
- MethodBody.cs
- WorkflowRequestContext.cs
- TextRunProperties.cs
- DigitShape.cs
- HebrewCalendar.cs
- DataListItemEventArgs.cs
- PropertyFilterAttribute.cs
- AvTraceDetails.cs
- TransactionManager.cs
- TrustLevel.cs
- XsltContext.cs
- TransformedBitmap.cs
- Style.cs
- VectorValueSerializer.cs
- MonthChangedEventArgs.cs
- AutomationPatternInfo.cs
- MouseDevice.cs
- QilSortKey.cs
- Renderer.cs
- OraclePermissionAttribute.cs
- HtmlElementCollection.cs
- TrackBar.cs
- PersonalizationStateInfoCollection.cs
- OptimizerPatterns.cs
- CodeDesigner.cs
- XPathNavigatorReader.cs
- CustomAttributeFormatException.cs
- DataPagerField.cs
- RegexMatch.cs
- JsonFormatGeneratorStatics.cs
- TableAutomationPeer.cs
- PinnedBufferMemoryStream.cs
- StringBuilder.cs
- log.cs
- XmlName.cs
- SqlDataSourceWizardForm.cs
- InputProcessorProfiles.cs
- GenericTypeParameterBuilder.cs
- CodeExpressionCollection.cs
- DocumentSchemaValidator.cs
- CompilerGeneratedAttribute.cs
- WindowsHyperlink.cs
- ProfilePropertyMetadata.cs
- Missing.cs
- CookieProtection.cs
- QilInvokeEarlyBound.cs
- ArglessEventHandlerProxy.cs
- AutoResetEvent.cs
- HostProtectionException.cs
- DataGridViewTopRowAccessibleObject.cs
- WebPartConnectionsDisconnectVerb.cs
- IISUnsafeMethods.cs