RefreshProperties 열거형
속성 창의 새로 고침 유형을 나타내는 식별자를 정의합니다.
네임스페이스: System.ComponentModel
어셈블리: System(system.dll)
구문
‘선언
Public Enumeration RefreshProperties
‘사용 방법
Dim instance As RefreshProperties
public enum RefreshProperties
public enum class RefreshProperties
public enum RefreshProperties
public enum RefreshProperties
멤버
멤버 이름 | 설명 | |
---|---|---|
All | 속성이 다시 쿼리되어야 하고 뷰는 새로 고쳐져야 합니다. | |
None | 새로 고칠 필요가 없습니다. | |
Repaint | 뷰가 새로 고쳐져야 합니다. |
설명
RefreshProperties는 속성 창의 뷰를 새로 고칠 때 사용될 수 있는 새로 고침 메서드의 형식을 나타내는 식별자를 정의합니다.
예제
다음 코드 예제에서는 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;
}
}
플랫폼
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에서 지원