Code:
/ DotNET / DotNET / 8.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; ////// [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)] public sealed class EditorAttribute : Attribute { private string baseTypeName; private string typeName; private string typeId; ///Specifies the editor to use to change a property. This class cannot be inherited. ////// public EditorAttribute() { this.typeName = string.Empty; this.baseTypeName = string.Empty; } ///Initializes a new instance of the ///class with the default editor, which is /// no 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 with the type name and base type /// name of the editor. /// 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; } ///Initializes a new instance of the ////// class. /// public string EditorBaseTypeName { get { return baseTypeName; } } ///Gets the name of the base class or interface serving as a lookup key for this editor. ////// public string EditorTypeName { get { return typeName; } } ///Gets the name of the editor class. ////// /// 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(); } } }/// 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. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DelegatingTypeDescriptionProvider.cs
- DynamicILGenerator.cs
- TransformGroup.cs
- SecurityKeyIdentifierClause.cs
- PageCatalogPart.cs
- SqlTypeSystemProvider.cs
- CodeObject.cs
- _SSPISessionCache.cs
- StateDesigner.CommentLayoutGlyph.cs
- ContextBase.cs
- DbConnectionOptions.cs
- BitmapEffect.cs
- HttpModuleCollection.cs
- EventDescriptor.cs
- XmlSchemaProviderAttribute.cs
- StructuredType.cs
- Compiler.cs
- DateTimeValueSerializerContext.cs
- GeometryHitTestResult.cs
- MailMessage.cs
- ProtocolsConfigurationEntry.cs
- AnonymousIdentificationModule.cs
- RequestCacheValidator.cs
- XmlDocumentSerializer.cs
- ModelPropertyImpl.cs
- ObjectDataSourceMethodEventArgs.cs
- Rfc4050KeyFormatter.cs
- ContractsBCL.cs
- SafeReversePInvokeHandle.cs
- SystemWebSectionGroup.cs
- SerializationSectionGroup.cs
- Cursor.cs
- UrlAuthFailedErrorFormatter.cs
- _BaseOverlappedAsyncResult.cs
- RegexCharClass.cs
- RichTextBox.cs
- TdsParserStaticMethods.cs
- SimpleParser.cs
- JavaScriptSerializer.cs
- DeferredTextReference.cs
- ProcessModule.cs
- EncryptedReference.cs
- EntityType.cs
- Geometry.cs
- TextSchema.cs
- SmtpNegotiateAuthenticationModule.cs
- MouseButton.cs
- ValidationErrorEventArgs.cs
- TextEditorDragDrop.cs
- ResourceDisplayNameAttribute.cs
- TextPatternIdentifiers.cs
- ColorInterpolationModeValidation.cs
- TypedOperationInfo.cs
- DesignerSerializationVisibilityAttribute.cs
- SecurityTokenAuthenticator.cs
- DbProviderFactory.cs
- KeyValueInternalCollection.cs
- BinaryFormatterWriter.cs
- AuditLog.cs
- FontNamesConverter.cs
- UnsafeNativeMethods.cs
- Dispatcher.cs
- PngBitmapDecoder.cs
- _DomainName.cs
- DtrList.cs
- ColumnWidthChangedEvent.cs
- CharacterString.cs
- ModelTreeManager.cs
- TypeBuilderInstantiation.cs
- XmlSchemaAnnotated.cs
- XmlSchemaObjectCollection.cs
- GeneralTransform2DTo3D.cs
- AuthenticationSection.cs
- CacheHelper.cs
- RegisteredScript.cs
- BigInt.cs
- Object.cs
- DesignerHost.cs
- DynamicQueryStringParameter.cs
- InProcStateClientManager.cs
- TextFormatterImp.cs
- NextPreviousPagerField.cs
- Page.cs
- BufferBuilder.cs
- DefaultValueAttribute.cs
- TextEffectResolver.cs
- Typeface.cs
- CollectionContainer.cs
- StandardCommands.cs
- DoubleLinkList.cs
- APCustomTypeDescriptor.cs
- ServerIdentity.cs
- WizardForm.cs
- ObservableDictionary.cs
- TextRunTypographyProperties.cs
- ToolStripOverflowButton.cs
- DataTable.cs
- RevocationPoint.cs
- ViewCellSlot.cs
- DataTableTypeConverter.cs