Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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.
///
/// [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;
/// }
/// }
///
///
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public sealed class ValueConversionAttribute : Attribute
{
//-----------------------------------------------------
//
// Constructors
//
//-----------------------------------------------------
///
/// 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.
///
/// [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;
/// }
/// }
///
///
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public sealed class ValueConversionAttribute : Attribute
{
//-----------------------------------------------------
//
// Constructors
//
//-----------------------------------------------------
///
/// 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
- CodeComment.cs
- ModifierKeysConverter.cs
- CompilerGlobalScopeAttribute.cs
- TransactionWaitAsyncResult.cs
- X509CertificateCollection.cs
- ClientSettings.cs
- OleCmdHelper.cs
- PreviewPrintController.cs
- ListBase.cs
- CodeMethodReturnStatement.cs
- MeasurementDCInfo.cs
- ArcSegment.cs
- OracleSqlParser.cs
- CheckBoxList.cs
- ServiceContractListItemList.cs
- InheritanceRules.cs
- Bitmap.cs
- NavigationCommands.cs
- ClientConvert.cs
- DrawingVisual.cs
- AccessibleObject.cs
- StringToken.cs
- TreeViewItem.cs
- Terminate.cs
- LocationEnvironment.cs
- RuleSettingsCollection.cs
- ControlUtil.cs
- MediaCommands.cs
- SqlDataSourceQueryConverter.cs
- LocalizeDesigner.cs
- EndpointDiscoveryBehavior.cs
- FillErrorEventArgs.cs
- smtpconnection.cs
- DoubleStorage.cs
- ResourceDescriptionAttribute.cs
- RuleInfoComparer.cs
- ResXBuildProvider.cs
- PagerSettings.cs
- AlgoModule.cs
- PartitionedStream.cs
- CustomLineCap.cs
- EventLogPermissionAttribute.cs
- querybuilder.cs
- DialogWindow.cs
- SqlTypeConverter.cs
- BrowserCapabilitiesCodeGenerator.cs
- ExtensionQuery.cs
- ContractListAdapter.cs
- Vector3DConverter.cs
- Win32.cs
- StorageAssociationTypeMapping.cs
- PassportAuthenticationEventArgs.cs
- DiscoveryRequestHandler.cs
- EntityDataSourceEntityTypeFilterItem.cs
- XmlAttributes.cs
- XmlDataContract.cs
- CodeBlockBuilder.cs
- SecondaryIndexDefinition.cs
- DEREncoding.cs
- EncoderBestFitFallback.cs
- ComEventsInfo.cs
- XmlNodeReader.cs
- DesignBindingPropertyDescriptor.cs
- StrokeCollection2.cs
- SynchronizingStream.cs
- TransformCryptoHandle.cs
- ObjectCloneHelper.cs
- MemberMaps.cs
- XmlMemberMapping.cs
- ZipFileInfoCollection.cs
- DesignTableCollection.cs
- ComponentChangingEvent.cs
- DEREncoding.cs
- lengthconverter.cs
- WindowsFont.cs
- TraceHwndHost.cs
- ActiveDocumentEvent.cs
- GridViewSortEventArgs.cs
- SafeEventLogReadHandle.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- RootBrowserWindowProxy.cs
- InstallerTypeAttribute.cs
- PenThreadPool.cs
- AssertFilter.cs
- NativeCppClassAttribute.cs
- Mutex.cs
- _LazyAsyncResult.cs
- ClientBuildManager.cs
- HttpHandlersSection.cs
- metadatamappinghashervisitor.cs
- SqlMetaData.cs
- ThreadAttributes.cs
- TagNameToTypeMapper.cs
- MTConfigUtil.cs
- WebScriptEndpointElement.cs
- MULTI_QI.cs
- EntitySqlQueryState.cs
- PlaceHolder.cs
- ImageSource.cs
- DataServiceRequestArgs.cs