RecommendedAsConfigurableAttribute 클래스
참고: 이 클래스는 이제 사용되지 않습니다. 또는 SettingsBindableAttribute을(를) 사용할 수도 있습니다.
속성을 응용 프로그램 설정으로 사용할 수 있도록 지정합니다.
네임스페이스: System.ComponentModel
어셈블리: System(system.dll)
구문
‘선언
<AttributeUsageAttribute(AttributeTargets.Property)> _
<ObsoleteAttribute("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.")> _
Public Class RecommendedAsConfigurableAttribute
Inherits Attribute
‘사용 방법
Dim instance As RecommendedAsConfigurableAttribute
[AttributeUsageAttribute(AttributeTargets.Property)]
[ObsoleteAttribute("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.")]
public class RecommendedAsConfigurableAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Property)]
[ObsoleteAttribute(L"Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.")]
public ref class RecommendedAsConfigurableAttribute : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Property) */
/** @attribute ObsoleteAttribute("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.") */
public class RecommendedAsConfigurableAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Property)
ObsoleteAttribute("Use System.ComponentModel.SettingsBindableAttribute instead to work with the new settings model.")
public class RecommendedAsConfigurableAttribute extends Attribute
설명
true로 설정된 RecommendedAsConfigurableAttribute로 표시되는 속성은 속성 창에서 ConfigurableProperties 줄을 확장하면 표시됩니다. 권장되는 설정을 사용하지 않거나 false로 설정된 RecommendedAsConfigurableAttribute로 표시되는 속성은 표시되지 않으며 가급적 응용 프로그램 설정에 사용되지 않습니다. 기본값은 false입니다.
속성 창의 설정에서 줄임표 단추(...)를 클릭하고 목록에서 적절한 속성을 선택하여 RecommendedAsConfigurableAttribute가 없는 속성을 Visual Studio .NET 설정에 바인딩할 수 있습니다.
참고
true로 설정된 RecommendedAsConfigurableAttribute로 속성을 표시하면 이 특성의 값이 상수 멤버 Yes로 설정됩니다. false 값으로 설정된 RecommendedAsConfigurableAttribute로 표시된 속성의 경우 값이 No입니다. 따라서 코드에서 이 특성의 값을 확인하려면 해당 특성을 RecommendedAsConfigurableAttribute.Yes 또는 RecommendedAsConfigurableAttribute.No로 지정해야 합니다.
자세한 내용은 특성 개요 및 특성을 사용하여 메타데이터 확장을 참조하십시오.
.
예제
다음 예제에서는 속성을 응용 프로그램 설정으로 사용할 수 있는 것으로 표시합니다.
<RecommendedAsConfigurable(True)> _
Public Property MyProperty() As Integer
Get
' Insert code here.
Return 0
End Get
Set
' Insert code here.
End Set
End Property
[RecommendedAsConfigurable(true)]
public int MyProperty {
get {
// Insert code here.
return 0;
}
set {
// Insert code here.
}
}
public:
[RecommendedAsConfigurable(true)]
property int MyProperty
{
int get()
{
// Insert code here.
return 0;
}
void set( int /*value*/ )
{
// Insert code here.
}
}
/** @attribute RecommendedAsConfigurable(true)
*/
/** @property
*/
public int get_MyProperty()
{
// Insert code here.
return 0;
} //get_MyProperty
/** @property
*/
public void set_MyProperty(int value)
{
// Insert code here.
} //set_MyProperty
다음 예제에서는 MyProperty
의 RecommendedAsConfigurableAttribute 값을 확인하는 방법에 대해 설명합니다. 먼저 코드는 개체의 모든 속성이 들어 있는 PropertyDescriptorCollection을 가져옵니다. 다음에는 PropertyDescriptorCollection으로 인덱싱하여 MyProperty
를 가져옵니다. 그런 다음 이 속성의 특성을 반환하여 특성 변수에 저장합니다.
이 예제에서는 RecommendedAsConfigurableAttribute의 값을 확인하는 두 가지 방법에 대해 설명합니다. 두 번째 코드 부분에서 해당 예제는 Equals 메서드를 호출합니다. 마지막 코드 부분에서 해당 예제는 RecommendedAsConfigurable 속성을 사용하여 값을 확인합니다.
' Gets the attributes for the property.
Dim attributes As AttributeCollection = TypeDescriptor.GetProperties(Me)("MyProperty").Attributes
' Checks to see if the value of the RecommendedAsConfigurableAttribute is Yes.
If attributes(GetType(RecommendedAsConfigurableAttribute)).Equals(RecommendedAsConfigurableAttribute.Yes) Then
' Insert code here.
End If
' This is another way to see if the property is recommended as configurable.
Dim myAttribute As RecommendedAsConfigurableAttribute = _
CType(attributes(GetType(RecommendedAsConfigurableAttribute)), RecommendedAsConfigurableAttribute)
If myAttribute.RecommendedAsConfigurable Then
' Insert code here.
End If
// Gets the attributes for the property.
AttributeCollection attributes =
TypeDescriptor.GetProperties(this)["MyProperty"].Attributes;
// Checks to see if the value of the RecommendedAsConfigurableAttribute is Yes.
if(attributes[typeof(RecommendedAsConfigurableAttribute)].Equals(RecommendedAsConfigurableAttribute.Yes)) {
// Insert code here.
}
// This is another way to see if the property is recommended as configurable.
RecommendedAsConfigurableAttribute myAttribute =
(RecommendedAsConfigurableAttribute)attributes[typeof(RecommendedAsConfigurableAttribute)];
if(myAttribute.RecommendedAsConfigurable) {
// Insert code here.
}
// Gets the attributes for the property.
AttributeCollection^ attributes = TypeDescriptor::GetProperties( this )[ "MyProperty" ]->Attributes;
// Checks to see if the value of the RecommendedAsConfigurableAttribute is Yes.
if ( attributes[ RecommendedAsConfigurableAttribute::typeid ]->Equals( RecommendedAsConfigurableAttribute::Yes ) )
{
// Insert code here.
}
// This is another way to see if the property is recommended as configurable.
RecommendedAsConfigurableAttribute^ myAttribute = dynamic_cast<RecommendedAsConfigurableAttribute^>(attributes[ RecommendedAsConfigurableAttribute::typeid ]);
if ( myAttribute->RecommendedAsConfigurable )
{
// Insert code here.
}
// Gets the attributes for the property.
AttributeCollection attributes =
TypeDescriptor.GetProperties(this).get_Item(
"MyProperty").get_Attributes();
// Checks to see if the value of the
// RecommendedAsConfigurableAttribute is Yes.
if (attributes.get_Item(RecommendedAsConfigurableAttribute.class.
ToType()).Equals(RecommendedAsConfigurableAttribute.Yes)) {
// Insert code here.
}
// This is another way to see if the property is recommended
// as configurable.
RecommendedAsConfigurableAttribute myAttribute =
((RecommendedAsConfigurableAttribute)(attributes.get_Item
(RecommendedAsConfigurableAttribute.class.ToType())));
if (myAttribute.get_RecommendedAsConfigurable()) {
// Insert code here.
}
RecommendedAsConfigurableAttribute로 클래스를 표시하는 경우 다음 코드를 사용하여 해당 값을 확인합니다.
Dim attributes As AttributeCollection = TypeDescriptor.GetAttributes(MyProperty)
If attributes(GetType(RecommendedAsConfigurableAttribute)).Equals(RecommendedAsConfigurableAttribute.Yes) Then
' Insert code here.
End If
AttributeCollection attributes =
TypeDescriptor.GetAttributes(MyProperty);
if(attributes[typeof(RecommendedAsConfigurableAttribute)].Equals(RecommendedAsConfigurableAttribute.Yes)) {
// Insert code here.
}
AttributeCollection^ attributes = TypeDescriptor::GetAttributes( MyProperty );
if ( attributes[ RecommendedAsConfigurableAttribute::typeid ]->Equals( RecommendedAsConfigurableAttribute::Yes ) )
{
// Insert code here.
}
AttributeCollection attributes =
TypeDescriptor.GetAttributes("MyProperty");
if (attributes.get_Item(RecommendedAsConfigurableAttribute.class.
ToType()).Equals(RecommendedAsConfigurableAttribute.Yes)) {
// Insert code here.
}
상속 계층 구조
System.Object
System.Attribute
System.ComponentModel.RecommendedAsConfigurableAttribute
스레드로부터의 안전성
이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.
플랫폼
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
1.0, 1.1에서 지원
2.0에서 사용되지 않음(컴파일러 경고)
참고 항목
참조
RecommendedAsConfigurableAttribute 멤버
System.ComponentModel 네임스페이스
Attribute
PropertyDescriptor 클래스
AttributeCollection 클래스
PropertyDescriptorCollection 클래스