Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / EditorAttribute.cs / 1 / EditorAttribute.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
*/
namespace System.ComponentModel {
using System.Diagnostics;
using System.Globalization;
using System.Security.Permissions;
///
/// Specifies the editor to use to change a property. This class cannot be inherited.
///
[AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
public sealed class EditorAttribute : Attribute {
private string baseTypeName;
private string typeName;
private string typeId;
///
/// Initializes a new instance of the class with the default editor, which is
/// no editor.
///
public EditorAttribute() {
this.typeName = string.Empty;
this.baseTypeName = string.Empty;
}
///
/// Initializes a new instance of the class with the type name and base type
/// name of the editor.
///
public EditorAttribute(string typeName, string baseTypeName) {
string temp = typeName.ToUpper(CultureInfo.InvariantCulture);
Debug.Assert(temp.IndexOf(".DLL") == -1, "Came across: " + typeName + " . Please remove the .dll extension");
this.typeName = typeName;
this.baseTypeName = baseTypeName;
}
///
/// Initializes a new instance of the class.
///
public EditorAttribute(string typeName, Type baseType) {
string temp = typeName.ToUpper(CultureInfo.InvariantCulture);
Debug.Assert(temp.IndexOf(".DLL") == -1, "Came across: " + typeName + " . Please remove the .dll extension");
this.typeName = typeName;
this.baseTypeName = baseType.AssemblyQualifiedName;
}
///
/// Initializes a new instance of the
/// class.
///
public EditorAttribute(Type type, Type baseType) {
this.typeName = type.AssemblyQualifiedName;
this.baseTypeName = baseType.AssemblyQualifiedName;
}
///
/// Gets the name of the base class or interface serving as a lookup key for this editor.
///
public string EditorBaseTypeName {
get {
return baseTypeName;
}
}
///
/// Gets the name of the editor class.
///
public string EditorTypeName {
get {
return typeName;
}
}
///
///
///
/// This defines a unique ID for this attribute type. It is used
/// by filtering algorithms to identify two attributes that are
/// the same type. For most attributes, this just returns the
/// Type instance for the attribute. EditorAttribute overrides
/// this to include the type of the editor base type.
///
///
public override object TypeId {
get {
if (typeId == null) {
string baseType = baseTypeName;
int comma = baseType.IndexOf(',');
if (comma != -1) {
baseType = baseType.Substring(0, comma);
}
typeId = GetType().FullName + baseType;
}
return typeId;
}
}
public override bool Equals(object obj) {
if (obj == this) {
return true;
}
EditorAttribute other = obj as EditorAttribute;
return (other != null) && other.typeName == typeName && other.baseTypeName == baseTypeName;
}
public override int GetHashCode() {
return base.GetHashCode();
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebContext.cs
- MultiViewDesigner.cs
- MsmqUri.cs
- Int16AnimationUsingKeyFrames.cs
- NavigationWindowAutomationPeer.cs
- Compress.cs
- BindValidationContext.cs
- TdsParser.cs
- LicenseProviderAttribute.cs
- ConfigurationLocationCollection.cs
- XmlTextReaderImplHelpers.cs
- categoryentry.cs
- ServiceChannelProxy.cs
- UnsafeNativeMethods.cs
- RegexInterpreter.cs
- Trace.cs
- DBBindings.cs
- HttpChannelBindingToken.cs
- TreeNodeSelectionProcessor.cs
- ThicknessAnimation.cs
- MessageQueuePermissionEntryCollection.cs
- ManipulationCompletedEventArgs.cs
- EventLogTraceListener.cs
- input.cs
- sqlinternaltransaction.cs
- CodeCompiler.cs
- LocalValueEnumerator.cs
- _LoggingObject.cs
- TraceSwitch.cs
- GridViewRowCollection.cs
- PrimaryKeyTypeConverter.cs
- FormsAuthenticationUser.cs
- AnnotationStore.cs
- MtomMessageEncodingElement.cs
- UserInitiatedNavigationPermission.cs
- Graphics.cs
- SimpleWorkerRequest.cs
- XmlSignatureManifest.cs
- EntitySet.cs
- Root.cs
- XmlAnyElementAttribute.cs
- OdbcError.cs
- EmbossBitmapEffect.cs
- Rectangle.cs
- Trace.cs
- PolicyException.cs
- Hyperlink.cs
- UriParserTemplates.cs
- AlphaSortedEnumConverter.cs
- TextBoxLine.cs
- ProfilePropertyNameValidator.cs
- PopupRootAutomationPeer.cs
- PrivateFontCollection.cs
- EncryptedXml.cs
- Itemizer.cs
- XmlSchemaParticle.cs
- OutputCacheModule.cs
- MatrixUtil.cs
- QilReplaceVisitor.cs
- webclient.cs
- TableLayoutPanel.cs
- FileNotFoundException.cs
- ErrorWebPart.cs
- SQLDoubleStorage.cs
- HttpValueCollection.cs
- SchemaTableColumn.cs
- DocumentReference.cs
- SiteMapNodeItemEventArgs.cs
- EntitySetRetriever.cs
- MsdtcClusterUtils.cs
- ComboBoxItem.cs
- TaskExceptionHolder.cs
- PageAsyncTaskManager.cs
- XmlSchema.cs
- ImageCollectionEditor.cs
- WsatTransactionInfo.cs
- MachineKeySection.cs
- RedBlackList.cs
- DataError.cs
- ScriptReference.cs
- IApplicationTrustManager.cs
- ScrollPatternIdentifiers.cs
- MemberHolder.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- IndentedWriter.cs
- DocumentPage.cs
- NotCondition.cs
- SafePointer.cs
- TraceData.cs
- SatelliteContractVersionAttribute.cs
- EventRecord.cs
- TypeConstant.cs
- CharUnicodeInfo.cs
- Int32RectValueSerializer.cs
- Types.cs
- BrushMappingModeValidation.cs
- TrailingSpaceComparer.cs
- SByteConverter.cs
- UnknownWrapper.cs
- ShutDownListener.cs