Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Data / ValueConversionAttribute.cs / 1305600 / ValueConversionAttribute.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: allows the author of a IValueConverter // to specify what source and target property types the // ValueConverter is capable of converting // // Specs: http://avalon/connecteddata/Specs/Data%20Binding.mht // //--------------------------------------------------------------------------- using System; namespace System.Windows.Data { ////// This attribute allows the author of a ////// to specify what source and target property types the ValueConverter is capable of converting. /// This meta data is useful for designer tools to help categorize and match ValueConverters. /// /// Add this custom attribute to your IValueConverter class definition. /// [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] public sealed class ValueConversionAttribute : Attribute { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- ////// [ValueConversion(typeof(Employee), typeof(Brush))] /// class MyConverter : IValueConverter /// { /// public object Convert(object value, Type targetType, object parameter, CultureInfo culture) /// { /// if (value is Dev) return Brushes.Beige; /// if (value is Employee) return Brushes.Salmon; /// return Brushes.Yellow; /// } /// } ///
////// Creates a new ValueConversionAttribute to indicate between /// what types of a data binding source and target this ValueConverter can convert. /// /// the expected source type this ValueConverter can handle /// the target type to which this ValueConverter can convert to public ValueConversionAttribute(Type sourceType, Type targetType) { if (sourceType == null) throw new ArgumentNullException("sourceType"); if (targetType == null) throw new ArgumentNullException("targetType"); _sourceType = sourceType; _targetType = targetType; } ////// The expected source type this ValueConverter can handle. /// public Type SourceType { get { return _sourceType; } } ////// The target type to which this ValueConverter can convert to. /// public Type TargetType { get { return _targetType; } } ////// The type of the optional ValueConverter Parameter object. /// public Type ParameterType { get { return _parameterType; } set { _parameterType = value; } } ////// Returns the unique identifier for this Attribute. /// // Type ID is used to remove redundant attributes by // putting all attributes in a dictionary of [TypeId, Attribute]. // If you want AllowMultiple attributes to work with designers, // you must override TypeId. The default implementation returns // this.GetType(), which is appropriate for AllowMultiple = false, but // not for AllowMultiple = true; public override object TypeId { // the attribute itself will be used as a key to the dictionary get { return this; } } ////// Returns the hash code for this instance. /// override public int GetHashCode() { // the default implementation does some funky enumeration over its fields // we can do better and use the 2 mandatory fields source/targetType's hash codes return _sourceType.GetHashCode() + _targetType.GetHashCode(); } //-------------------------------------------- // Private members //-------------------------------------------- private Type _sourceType; private Type _targetType; private Type _parameterType; } } // 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: allows the author of a IValueConverter // to specify what source and target property types the // ValueConverter is capable of converting // // Specs: http://avalon/connecteddata/Specs/Data%20Binding.mht // //--------------------------------------------------------------------------- using System; namespace System.Windows.Data { ////// This attribute allows the author of a ////// to specify what source and target property types the ValueConverter is capable of converting. /// This meta data is useful for designer tools to help categorize and match ValueConverters. /// /// Add this custom attribute to your IValueConverter class definition. /// [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] public sealed class ValueConversionAttribute : Attribute { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- ////// [ValueConversion(typeof(Employee), typeof(Brush))] /// class MyConverter : IValueConverter /// { /// public object Convert(object value, Type targetType, object parameter, CultureInfo culture) /// { /// if (value is Dev) return Brushes.Beige; /// if (value is Employee) return Brushes.Salmon; /// return Brushes.Yellow; /// } /// } ///
////// Creates a new ValueConversionAttribute to indicate between /// what types of a data binding source and target this ValueConverter can convert. /// /// the expected source type this ValueConverter can handle /// the target type to which this ValueConverter can convert to public ValueConversionAttribute(Type sourceType, Type targetType) { if (sourceType == null) throw new ArgumentNullException("sourceType"); if (targetType == null) throw new ArgumentNullException("targetType"); _sourceType = sourceType; _targetType = targetType; } ////// The expected source type this ValueConverter can handle. /// public Type SourceType { get { return _sourceType; } } ////// The target type to which this ValueConverter can convert to. /// public Type TargetType { get { return _targetType; } } ////// The type of the optional ValueConverter Parameter object. /// public Type ParameterType { get { return _parameterType; } set { _parameterType = value; } } ////// Returns the unique identifier for this Attribute. /// // Type ID is used to remove redundant attributes by // putting all attributes in a dictionary of [TypeId, Attribute]. // If you want AllowMultiple attributes to work with designers, // you must override TypeId. The default implementation returns // this.GetType(), which is appropriate for AllowMultiple = false, but // not for AllowMultiple = true; public override object TypeId { // the attribute itself will be used as a key to the dictionary get { return this; } } ////// Returns the hash code for this instance. /// override public int GetHashCode() { // the default implementation does some funky enumeration over its fields // we can do better and use the 2 mandatory fields source/targetType's hash codes return _sourceType.GetHashCode() + _targetType.GetHashCode(); } //-------------------------------------------- // Private members //-------------------------------------------- private Type _sourceType; private Type _targetType; private Type _parameterType; } } // 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
- InvalidFilterCriteriaException.cs
- CodeDirectiveCollection.cs
- TextLineBreak.cs
- WebZoneDesigner.cs
- tabpagecollectioneditor.cs
- Emitter.cs
- SiteMapDataSourceView.cs
- FrameworkElement.cs
- InlineObject.cs
- LinkButton.cs
- BamlLocalizationDictionary.cs
- AnimationClockResource.cs
- IdentityHolder.cs
- DbDeleteCommandTree.cs
- TryExpression.cs
- XsltContext.cs
- EdmError.cs
- XhtmlCssHandler.cs
- DetailsViewDeleteEventArgs.cs
- Cursor.cs
- ConnectionStringsExpressionEditor.cs
- unitconverter.cs
- NameNode.cs
- FilteredAttributeCollection.cs
- NTAccount.cs
- Table.cs
- Collection.cs
- IconHelper.cs
- PagePropertiesChangingEventArgs.cs
- PassportAuthentication.cs
- DbConnectionPoolIdentity.cs
- EventSetter.cs
- ContextBase.cs
- SafeUserTokenHandle.cs
- TextFormattingConverter.cs
- MetadataCache.cs
- DirectoryNotFoundException.cs
- _ListenerAsyncResult.cs
- RightsManagementEncryptedStream.cs
- AssemblyNameUtility.cs
- ListViewContainer.cs
- ASCIIEncoding.cs
- UrlMappingCollection.cs
- CommandDevice.cs
- RegexGroup.cs
- GridViewColumnCollection.cs
- DocumentOrderComparer.cs
- securestring.cs
- storagemappingitemcollection.viewdictionary.cs
- RandomNumberGenerator.cs
- WebPartDisplayModeCollection.cs
- Int32Animation.cs
- DisplayMemberTemplateSelector.cs
- KoreanLunisolarCalendar.cs
- CssClassPropertyAttribute.cs
- SqlBooleanizer.cs
- RightsController.cs
- FlagsAttribute.cs
- EntityContainerAssociationSetEnd.cs
- Rfc4050KeyFormatter.cs
- XhtmlTextWriter.cs
- Documentation.cs
- HotCommands.cs
- Object.cs
- SetterBaseCollection.cs
- DataContractJsonSerializerOperationBehavior.cs
- X509SecurityTokenProvider.cs
- ColumnHeader.cs
- Expressions.cs
- SerializerProvider.cs
- RequestNavigateEventArgs.cs
- WebPartMovingEventArgs.cs
- ResolveDuplexCD1AsyncResult.cs
- ImpersonationOption.cs
- SemanticResolver.cs
- ImportCatalogPart.cs
- DocumentXPathNavigator.cs
- NamespaceInfo.cs
- MsmqIntegrationChannelListener.cs
- ProcessProtocolHandler.cs
- SchemaDeclBase.cs
- MasterPage.cs
- SqlDependencyListener.cs
- WebSysDisplayNameAttribute.cs
- ReadOnlyHierarchicalDataSourceView.cs
- HostExecutionContextManager.cs
- ProfileProvider.cs
- XdrBuilder.cs
- DesignTimeParseData.cs
- ProcessHost.cs
- WindowsSlider.cs
- XamlInt32CollectionSerializer.cs
- ComponentSerializationService.cs
- UnionExpr.cs
- FlowDocumentPageViewerAutomationPeer.cs
- WorkflowRuntimeSection.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- BasePattern.cs
- ObjectComplexPropertyMapping.cs
- _LazyAsyncResult.cs