Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / MS / Internal / Ink / DrawingAttributesDefaultValueFactory.cs / 1 / DrawingAttributesDefaultValueFactory.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: DefaultValueFactory for DrawingAttributes // // History: // 2005/11/08 : [....] - Created // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Windows; using System.Windows.Controls; using System.Windows.Ink; namespace MS.Internal.Ink { internal class DrawingAttributesDefaultValueFactory : DefaultValueFactory { internal DrawingAttributesDefaultValueFactory() { } ////// 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 DrawingAttributes(); } } ////// Creates a mutable default value /// internal override object CreateDefaultValue(DependencyObject owner, DependencyProperty property) { // Instantiate our default value instance. DrawingAttributes defaultValue = new DrawingAttributes(); // Add event handlers for tracking the changes on the default value instance. DrawingAttributesDefaultPromoter promoter = new DrawingAttributesDefaultPromoter((InkCanvas)owner); defaultValue.AttributeChanged += new PropertyDataChangedEventHandler(promoter.OnDrawingAttributesChanged); defaultValue.PropertyDataChanged += new PropertyDataChangedEventHandler(promoter.OnDrawingAttributesChanged); return defaultValue; } ////// A tracking class which monitors the sub-property changes on DrawingAttributes /// private class DrawingAttributesDefaultPromoter { ////// Constructor /// /// internal DrawingAttributesDefaultPromoter(InkCanvas owner) { _owner = owner; } ////// A handler for both AttributeChanged and PropertyDataChanged. /// /// /// internal void OnDrawingAttributesChanged(object sender, PropertyDataChangedEventArgs e) { DrawingAttributes value = (DrawingAttributes)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.AttributeChanged -= new PropertyDataChangedEventHandler(OnDrawingAttributesChanged); value.PropertyDataChanged -= new PropertyDataChangedEventHandler(OnDrawingAttributesChanged); // if (_owner.ReadLocalValue(InkCanvas.DefaultDrawingAttributesProperty) == DependencyProperty.UnsetValue) { // Promote the instance to the local value. _owner.SetValue(InkCanvas.DefaultDrawingAttributesProperty, 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 = InkCanvas.DefaultDrawingAttributesProperty.GetMetadata(_owner.DependencyObjectType); metadata.ClearCachedDefaultValue(_owner, InkCanvas.DefaultDrawingAttributesProperty); } private readonly InkCanvas _owner; } } } // 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
- PartBasedPackageProperties.cs
- SmtpNetworkElement.cs
- InternalMappingException.cs
- DataGridViewRowHeaderCell.cs
- TextRangeProviderWrapper.cs
- StylusPointProperty.cs
- WeakReferenceEnumerator.cs
- GCHandleCookieTable.cs
- CodeDirectionExpression.cs
- CodeIdentifier.cs
- DCSafeHandle.cs
- TextContainerChangedEventArgs.cs
- CharacterHit.cs
- HMACSHA384.cs
- UdpDiscoveryMessageFilter.cs
- ItemChangedEventArgs.cs
- IgnoreSectionHandler.cs
- EntityDataSourceColumn.cs
- BoolLiteral.cs
- HtmlPhoneCallAdapter.cs
- SmtpNegotiateAuthenticationModule.cs
- TraceXPathNavigator.cs
- XmlDataDocument.cs
- QueryCacheManager.cs
- GACMembershipCondition.cs
- SchemaObjectWriter.cs
- SqlConnectionManager.cs
- UriSection.cs
- TypefaceMetricsCache.cs
- BinaryObjectWriter.cs
- PackWebRequestFactory.cs
- ConnectionStringSettings.cs
- ExpressionConverter.cs
- RestClientProxyHandler.cs
- EmbeddedObject.cs
- DataGridViewCell.cs
- ToolTipService.cs
- ToolStripItemClickedEventArgs.cs
- NullToBooleanConverter.cs
- SchemaDeclBase.cs
- DirectionalLight.cs
- ValidationErrorEventArgs.cs
- LabelTarget.cs
- BindingSource.cs
- XamlSerializerUtil.cs
- WebPartEditorCancelVerb.cs
- DataListItem.cs
- LineServicesRun.cs
- VirtualPath.cs
- ServiceModelReg.cs
- Expander.cs
- VirtualizingPanel.cs
- BindingCompleteEventArgs.cs
- SrgsElement.cs
- NameValuePair.cs
- WebPartEditorCancelVerb.cs
- PointHitTestParameters.cs
- ReferencedCategoriesDocument.cs
- StylusPointPropertyInfo.cs
- _NTAuthentication.cs
- MsmqInputMessage.cs
- MLangCodePageEncoding.cs
- SafeNativeMethods.cs
- IntSecurity.cs
- BindingNavigatorDesigner.cs
- InternalTransaction.cs
- DataGridColumn.cs
- WebPartMinimizeVerb.cs
- WrappedIUnknown.cs
- BaseAutoFormat.cs
- DictionaryMarkupSerializer.cs
- XmlSchemaSearchPattern.cs
- MessageQueuePermissionEntryCollection.cs
- ContractListAdapter.cs
- NullableBoolConverter.cs
- Unit.cs
- ImportOptions.cs
- TrustLevel.cs
- NativeWindow.cs
- StringReader.cs
- _Rfc2616CacheValidators.cs
- BlurBitmapEffect.cs
- TableParaClient.cs
- SchemaImporterExtensionElementCollection.cs
- TransactionProtocolConverter.cs
- Vector.cs
- XPathExpr.cs
- CodeChecksumPragma.cs
- OptimalBreakSession.cs
- JulianCalendar.cs
- CodeTypeMemberCollection.cs
- InkPresenter.cs
- ComplusTypeValidator.cs
- SmtpCommands.cs
- X509CertificateCollection.cs
- DesignerDataSourceView.cs
- ClientTargetCollection.cs
- TreeNodeEventArgs.cs
- XmlNodeWriter.cs
- ConfigurationSectionGroup.cs