http://msdn.microsoft.com/ko-kr/library/system.componentmodel.descriptionattribute.aspx
속성 또는 이벤트에 대한 설명을 지정합니다.
네임스페이스: System.ComponentModel
어셈블리:
System(System.dll)
<AttributeUsageAttribute(AttributeTargets.All)> _ Public Class DescriptionAttribute _ Inherits Attribute
Dim instance As DescriptionAttribute
[AttributeUsageAttribute(AttributeTargets.All)] public class DescriptionAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::All)] public ref class DescriptionAttribute : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.All) */ public class DescriptionAttribute extends Attribute
public class DescriptionAttribute extends Attribute
비주얼 디자이너는 속성 창 등에서 구성 요소 멤버를 참조할 때 지정된 설명을 표시할 수 있습니다. 이 특성의 값에 액세스하려면 Description을 호출합니다.
자세한 내용은 특성 개요 및 특성을 사용하여 메타데이터 확장을 참조하십시오.
Topic | Location |
---|---|
ASP.NET 1.1용 사용자 지정 데이터 바인딩 컨트롤 개발 | Authoring ASP.NET Controls |
ASP.NET 1.1용 사용자 지정 데이터 바인딩 컨트롤 개발 | Visual Studio에서 ASP .NET 웹 응용 프로그램 빌드 |
ASP.NET 2.0 이상용 사용자 지정 데이터 바인딩 컨트롤 개발 | Visual Studio에서 ASP .NET 웹 응용 프로그램 빌드 |
ASP.NET 2.0용 사용자 지정 데이터 바인딩 컨트롤 개발 | Authoring ASP.NET Controls |
연습: ASP.NET 1.1용 사용자 지정 데이터 바인딩 ASP.NET 웹 컨트롤 만들기 | Authoring ASP.NET Controls |
연습: ASP.NET 1.1용 사용자 지정 데이터 바인딩 ASP.NET 웹 컨트롤 만들기 | Visual Studio에서 ASP .NET 웹 응용 프로그램 빌드 |
연습: ASP.NET 2.0용 사용자 지정 데이터 바인딩 ASP.NET 웹 컨트롤 만들기 | Authoring ASP.NET Controls |
연습: ASP.NET 2.0용 사용자 지정 데이터 바인딩 ASP.NET 웹 컨트롤 만들기 | Visual Studio에서 ASP .NET 웹 응용 프로그램 빌드 |
연습: 사용자 지정 서버 컨트롤 개발 및 사용 | Authoring ASP.NET Controls |
연습: 사용자 지정 서버 컨트롤 개발 및 사용 | Visual Web Developer를 사용하여 응용 프로그램 빌드 |
다음 예제에서는 MyImage 속성을 만듭니다. 이 속성에는 DescriptionAttribute 및 CategoryAttribute의 두 가지 특성이 있습니다.
<Description("The image associated with the control"), _ Category("Appearance")> _ Public Property MyImage() As Image Get ' Insert code here. Return image1 End Get Set ' Insert code here. End Set End Property
[Description("The image associated with the control"),Category("Appearance")] public Image MyImage { get { // Insert code here. return image1; } set { // Insert code here. } }
public: property Image^ MyImage { [Description("The image associated with the control"),Category("Appearance")] Image^ get() { // Insert code here. return image1; } void set( Image^ value ) { // Insert code here. } }
/** @attribute Description("The image associated with the control") @attribute Category("Appearance") */ /** @property */ public Image get_MyImage() { // Insert code here. return image1; } //get_MyImage /** @property */ public void set_MyImage(Image value) { // Insert code here. } //set_MyImage
다음 예제에서는 MyImage의 설명을 가져옵니다. 먼저 코드는 개체의 모든 속성이 들어 있는 PropertyDescriptorCollection을 가져옵니다. 다음에는 PropertyDescriptorCollection으로 인덱싱하여 MyImage를 가져옵니다. 그런 다음 이 속성의 특성을 반환하여 특성 변수에 저장합니다.
이 예제에서는 AttributeCollection에서 DescriptionAttribute를 검색한 다음 이를 콘솔 화면에 쓰는 방법으로 설명을 출력합니다.
' Gets the attributes for the property. Dim attributes As AttributeCollection = _ TypeDescriptor.GetProperties(Me)("MyImage").Attributes ' Prints the description by retrieving the DescriptionAttribute ' from the AttributeCollection. Dim myAttribute As DescriptionAttribute = _ CType(attributes(GetType(DescriptionAttribute)), DescriptionAttribute) Console.WriteLine(myAttribute.Description)
// Gets the attributes for the property. AttributeCollection attributes = TypeDescriptor.GetProperties(this)["MyImage"].Attributes; /* Prints the description by retrieving the DescriptionAttribute * from the AttributeCollection. */ DescriptionAttribute myAttribute = (DescriptionAttribute)attributes[typeof(DescriptionAttribute)]; Console.WriteLine(myAttribute.Description);
// Gets the attributes for the property. AttributeCollection^ attributes = TypeDescriptor::GetProperties( this )[ "MyImage" ]->Attributes; /* Prints the description by retrieving the DescriptionAttribute * from the AttributeCollection. */ DescriptionAttribute^ myAttribute = dynamic_cast<DescriptionAttribute^>(attributes[ DescriptionAttribute::typeid ]); Console::WriteLine( myAttribute->Description );
// Gets the attributes for the property. AttributeCollection attributes = TypeDescriptor.GetProperties(this). get_Item("MyImage").get_Attributes(); /* Prints the description by retrieving the DescriptionAttribute from the AttributeCollection. */ DescriptionAttribute myAttribute = (DescriptionAttribute)(attributes. get_Item(DescriptionAttribute.class.ToType())); Console.WriteLine(myAttribute.get_Description());
System..::.Attribute
System.ComponentModel..::.DescriptionAttribute
Microsoft.VisualBasic.Compatibility.VB6..::.SRDescriptionAttribute
System.Data..::.DataSysDescriptionAttribute
System.Diagnostics..::.MonitoringDescriptionAttribute
System.DirectoryServices..::.DSDescriptionAttribute
System.IO..::.IODescriptionAttribute
System.Messaging..::.MessagingDescriptionAttribute
System.ServiceProcess..::.ServiceProcessDescriptionAttribute
System.Timers..::.TimersDescriptionAttribute
Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
'프로젝트 > 메신저관련' 카테고리의 다른 글
String..::.ToCharArray (0) | 2010.02.22 |
---|---|
extern(C# 참조) (0) | 2010.02.19 |
Collection / ArrayList / HashTable (0) | 2010.02.19 |