다음을 통해 공유


RefreshPropertiesAttribute 클래스

관련된 속성 값이 변경될 때 속성 표를 새로 고쳐야 함을 나타냅니다. 이 클래스는 상속될 수 없습니다.

네임스페이스: System.ComponentModel
어셈블리: System(system.dll)

구문

‘선언
<AttributeUsageAttribute(AttributeTargets.All)> _
Public NotInheritable Class RefreshPropertiesAttribute
    Inherits Attribute
‘사용 방법
Dim instance As RefreshPropertiesAttribute
[AttributeUsageAttribute(AttributeTargets.All)] 
public sealed class RefreshPropertiesAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::All)] 
public ref class RefreshPropertiesAttribute sealed : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.All) */ 
public final class RefreshPropertiesAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.All) 
public final class RefreshPropertiesAttribute extends Attribute

설명

RefreshPropertiesAttributePropertyGrid 컨트롤을 새로 고칠 때 사용할 새로 고침 모드의 형식을 나타냅니다.

예제

다음 코드 예제에서는 RefreshPropertiesAttribute 클래스를 사용하여 DataSource 속성의 새로 고침 모드를 지정하는 방법을 보여 줍니다. 전체 코드 목록을 보려면 방법: Windows Forms 컨트롤에서 특성 적용을 참조하십시오.

<Category("Data"), _
Description("Indicates the source of data for the control."), _
RefreshProperties(RefreshProperties.Repaint), _
AttributeProvider(GetType(IListSource))> _
Public Property DataSource() As Object
    Get
        Return Me.dataGridView1.DataSource
    End Get

    Set(ByVal value As Object)
        Me.dataGridView1.DataSource = value
    End Set
End Property
[Category("Data")]
[Description("Indicates the source of data for the control.")]
[RefreshProperties(RefreshProperties.Repaint)]
[AttributeProvider(typeof(IListSource))]
public object DataSource
{
    get
    {
        return this.dataGridView1.DataSource;
    }

    set
    {
        this.dataGridView1.DataSource = value;
    }
}

상속 계층 구조

System.Object
   System.Attribute
    System.ComponentModel.RefreshPropertiesAttribute

스레드로부터의 안전성

이 형식의 모든 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

2.0, 1.1, 1.0에서 지원

참고 항목

참조

RefreshPropertiesAttribute 멤버
System.ComponentModel 네임스페이스
RefreshProperties 열거형