C# 클래스 Microsoft.VisualStudio.Project.DesignPropertyDescriptor

The purpose of DesignPropertyDescriptor is to allow us to customize the display name of the property in the property grid. None of the CLR implementations of PropertyDescriptor allow you to change the DisplayName.
상속: System.ComponentModel.PropertyDescriptor
파일 보기 프로젝트 열기: tunnelvisionlabs/MPFProj10

공개 메소드들

메소드 설명
CanResetValue ( object component ) : bool

Delegates to base.

DesignPropertyDescriptor ( PropertyDescriptor prop, ProjectNode projectManager ) : System

Constructor. Copy the base property descriptor and also hold a pointer to it for calling its overridden abstract methods.

GetEditor ( Type editorBaseType ) : object

Delegates to base.

GetTypeFromNameProperty ( string typeName ) : Type

Convert name to a Type object.

GetValue ( object component ) : object

Delegates to base.

ResetValue ( object component ) : void

Delegates to base.

SetValue ( object component, object value ) : void

Delegates to base.

ShouldSerializeValue ( object component ) : bool

Delegates to base.

메소드 상세

CanResetValue() 공개 메소드

Delegates to base.
public CanResetValue ( object component ) : bool
component object
리턴 bool

DesignPropertyDescriptor() 공개 메소드

Constructor. Copy the base property descriptor and also hold a pointer to it for calling its overridden abstract methods.
public DesignPropertyDescriptor ( PropertyDescriptor prop, ProjectNode projectManager ) : System
prop System.ComponentModel.PropertyDescriptor
projectManager ProjectNode
리턴 System

GetEditor() 공개 메소드

Delegates to base.
public GetEditor ( Type editorBaseType ) : object
editorBaseType System.Type
리턴 object

GetTypeFromNameProperty() 공개 메소드

Convert name to a Type object.
public GetTypeFromNameProperty ( string typeName ) : Type
typeName string
리턴 System.Type

GetValue() 공개 메소드

Delegates to base.
public GetValue ( object component ) : object
component object
리턴 object

ResetValue() 공개 메소드

Delegates to base.
public ResetValue ( object component ) : void
component object
리턴 void

SetValue() 공개 메소드

Delegates to base.
public SetValue ( object component, object value ) : void
component object
value object
리턴 void

ShouldSerializeValue() 공개 메소드

Delegates to base.
public ShouldSerializeValue ( object component ) : bool
component object
리턴 bool