Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / Model / XamlUtilities.cs / 1305376 / XamlUtilities.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.Activities.Presentation.Model { using System; using System.Collections; using System.ComponentModel; using System.Reflection; internal static class XamlUtilities { static Hashtable converterCache; static object converterCacheSyncObject = new object(); public static TypeConverter GetConverter(Type itemType) { TypeConverter converter = TypeDescriptor.GetConverter(itemType); if (converter == null || converter.GetType() == typeof(TypeConverter)) { // We got an invalid converter. WPF will do this if the converter // is internal, but we use internal converters all over the place // at design time. Detect this and build the converter ourselves. if (converterCache != null) { converter = (TypeConverter)converterCache[itemType]; if (converter != null) { return converter; } } AttributeCollection attrs = TypeDescriptor.GetAttributes(itemType); TypeConverterAttribute tca = attrs[typeof(TypeConverterAttribute)] as TypeConverterAttribute; if (tca != null && tca.ConverterTypeName != null) { Type type = Type.GetType(tca.ConverterTypeName); if (type != null && !type.IsPublic && typeof(TypeConverter).IsAssignableFrom(type)) { ConstructorInfo ctor = type.GetConstructor(new Type[] { typeof(Type) }); if (ctor != null) { converter = (TypeConverter)ctor.Invoke(new object[] { itemType }); } else { converter = (TypeConverter)Activator.CreateInstance(type); } lock (converterCacheSyncObject) { if (converterCache == null) { converterCache = new Hashtable(); // Listen to type changes and clear the cache. // This allows new metadata tables to be installed TypeDescriptor.Refreshed += delegate(RefreshEventArgs args) { converterCache.Remove(args.TypeChanged); }; } converterCache[itemType] = converter; } } } } return converter; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.Activities.Presentation.Model { using System; using System.Collections; using System.ComponentModel; using System.Reflection; internal static class XamlUtilities { static Hashtable converterCache; static object converterCacheSyncObject = new object(); public static TypeConverter GetConverter(Type itemType) { TypeConverter converter = TypeDescriptor.GetConverter(itemType); if (converter == null || converter.GetType() == typeof(TypeConverter)) { // We got an invalid converter. WPF will do this if the converter // is internal, but we use internal converters all over the place // at design time. Detect this and build the converter ourselves. if (converterCache != null) { converter = (TypeConverter)converterCache[itemType]; if (converter != null) { return converter; } } AttributeCollection attrs = TypeDescriptor.GetAttributes(itemType); TypeConverterAttribute tca = attrs[typeof(TypeConverterAttribute)] as TypeConverterAttribute; if (tca != null && tca.ConverterTypeName != null) { Type type = Type.GetType(tca.ConverterTypeName); if (type != null && !type.IsPublic && typeof(TypeConverter).IsAssignableFrom(type)) { ConstructorInfo ctor = type.GetConstructor(new Type[] { typeof(Type) }); if (ctor != null) { converter = (TypeConverter)ctor.Invoke(new object[] { itemType }); } else { converter = (TypeConverter)Activator.CreateInstance(type); } lock (converterCacheSyncObject) { if (converterCache == null) { converterCache = new Hashtable(); // Listen to type changes and clear the cache. // This allows new metadata tables to be installed TypeDescriptor.Refreshed += delegate(RefreshEventArgs args) { converterCache.Remove(args.TypeChanged); }; } converterCache[itemType] = converter; } } } } return converter; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlStatistics.cs
- NavigateEvent.cs
- RuntimeArgumentHandle.cs
- RadioButton.cs
- TitleStyle.cs
- ModuleConfigurationInfo.cs
- Page.cs
- PointCollection.cs
- ListViewEditEventArgs.cs
- AdjustableArrowCap.cs
- StringUtil.cs
- SystemIcons.cs
- TransactionChannel.cs
- CrossAppDomainChannel.cs
- Menu.cs
- SqlUserDefinedAggregateAttribute.cs
- EmptyQuery.cs
- CodeTypeReferenceExpression.cs
- FileIOPermission.cs
- OverlappedAsyncResult.cs
- SoapEnumAttribute.cs
- HttpModuleAction.cs
- FieldToken.cs
- InertiaExpansionBehavior.cs
- ProxyElement.cs
- BitmapCodecInfoInternal.cs
- PixelFormats.cs
- TypeLoadException.cs
- SecurityHelper.cs
- XmlQualifiedNameTest.cs
- XmlKeywords.cs
- DrawingContext.cs
- StylusButtonEventArgs.cs
- WindowsGraphics.cs
- Model3DGroup.cs
- ParseNumbers.cs
- TextContainerChangedEventArgs.cs
- SqlTriggerAttribute.cs
- SafeFindHandle.cs
- ConditionCollection.cs
- PanelDesigner.cs
- PointKeyFrameCollection.cs
- TableTextElementCollectionInternal.cs
- OutputCacheProfile.cs
- XPathQilFactory.cs
- DbConnectionHelper.cs
- DeviceSpecificChoice.cs
- SecurityElement.cs
- HttpListener.cs
- ParserOptions.cs
- HttpHandlersSection.cs
- CheckBox.cs
- ProofTokenCryptoHandle.cs
- ListComponentEditor.cs
- BasicHttpBinding.cs
- TemplateControlParser.cs
- PointHitTestParameters.cs
- RootContext.cs
- DbProviderManifest.cs
- PackageRelationshipCollection.cs
- SmiSettersStream.cs
- LinqDataSourceView.cs
- XmlCharCheckingWriter.cs
- Base64Stream.cs
- basevalidator.cs
- ListItemConverter.cs
- _SslStream.cs
- XmlWriterSettings.cs
- StylusCaptureWithinProperty.cs
- ObjectTag.cs
- PathSegment.cs
- SQLBytes.cs
- GC.cs
- XComponentModel.cs
- AccessControlEntry.cs
- SlipBehavior.cs
- CodeDirectoryCompiler.cs
- DataGridViewCellStyle.cs
- ContextMenuAutomationPeer.cs
- DataStorage.cs
- SharedStatics.cs
- QueryOpeningEnumerator.cs
- AuthStoreRoleProvider.cs
- ObjectListDataBindEventArgs.cs
- RepeaterCommandEventArgs.cs
- DataGridViewSelectedColumnCollection.cs
- XmlSchemaAnnotation.cs
- FloaterParagraph.cs
- StorageFunctionMapping.cs
- InterleavedZipPartStream.cs
- Utils.cs
- DynamicQueryStringParameter.cs
- BinarySerializer.cs
- TextFindEngine.cs
- DataServiceEntityAttribute.cs
- DialogWindow.cs
- SizeChangedEventArgs.cs
- AmbientProperties.cs
- PinProtectionHelper.cs
- ProxyGenerator.cs