Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Data / ValueConversionAttribute.cs / 1 / 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
- MatrixStack.cs
- HyperLinkColumn.cs
- MultiPageTextView.cs
- DesignerAdRotatorAdapter.cs
- ServiceInstanceProvider.cs
- TextParentUndoUnit.cs
- SSmlParser.cs
- StreamAsIStream.cs
- DoubleAnimationUsingKeyFrames.cs
- SystemColorTracker.cs
- EditBehavior.cs
- TransactionFlowBindingElement.cs
- HandlerElementCollection.cs
- PreviewControlDesigner.cs
- CompressedStack.cs
- TypeGeneratedEventArgs.cs
- NTAccount.cs
- DataGridViewCellValueEventArgs.cs
- unsafeIndexingFilterStream.cs
- WebBrowser.cs
- DataGridViewTextBoxEditingControl.cs
- FilteredAttributeCollection.cs
- RegexGroup.cs
- Select.cs
- SoapProtocolReflector.cs
- diagnosticsswitches.cs
- Int64AnimationUsingKeyFrames.cs
- MetaType.cs
- RequestNavigateEventArgs.cs
- DataMemberConverter.cs
- UIPermission.cs
- GradientPanel.cs
- RSAOAEPKeyExchangeFormatter.cs
- WebBrowserEvent.cs
- DeviceSpecificDesigner.cs
- EdmToObjectNamespaceMap.cs
- dbenumerator.cs
- DependsOnAttribute.cs
- ZipArchive.cs
- EntityContainerRelationshipSet.cs
- CalendarBlackoutDatesCollection.cs
- SqlBulkCopyColumnMappingCollection.cs
- PackageDigitalSignatureManager.cs
- ArrayList.cs
- RequestCache.cs
- LinkedList.cs
- DataGridViewRowEventArgs.cs
- ResourceExpressionEditor.cs
- WizardStepBase.cs
- BatchStream.cs
- DataObjectMethodAttribute.cs
- FormsAuthenticationConfiguration.cs
- LOSFormatter.cs
- ParallelDesigner.xaml.cs
- ContainerAction.cs
- CounterSampleCalculator.cs
- WebBrowserEvent.cs
- MatchingStyle.cs
- CookieProtection.cs
- UnsafeNativeMethods.cs
- DataGridViewCellCollection.cs
- PropertyPathWorker.cs
- WebPartCatalogAddVerb.cs
- BinaryUtilClasses.cs
- SizeLimitedCache.cs
- SiteMapPath.cs
- ListControl.cs
- ContextQuery.cs
- UnsafeNativeMethods.cs
- StructuralType.cs
- AssemblyResolver.cs
- JsonFaultDetail.cs
- ScrollableControl.cs
- TranslateTransform3D.cs
- ReversePositionQuery.cs
- QueryAsyncResult.cs
- UriScheme.cs
- LoginName.cs
- GetPageCompletedEventArgs.cs
- KeyEventArgs.cs
- DataServiceRequest.cs
- PlatformNotSupportedException.cs
- EntityKey.cs
- WindowsTooltip.cs
- HistoryEventArgs.cs
- WebBaseEventKeyComparer.cs
- DBSqlParserColumn.cs
- GeneralTransform2DTo3D.cs
- WebPartAuthorizationEventArgs.cs
- SynchronizationLockException.cs
- CurrentChangingEventManager.cs
- Metadata.cs
- BevelBitmapEffect.cs
- HttpRequestCacheValidator.cs
- Speller.cs
- BrowsableAttribute.cs
- SimpleHandlerFactory.cs
- EntityDesignerUtils.cs
- PropertyDescriptorComparer.cs
- DetailsViewRow.cs