次の方法で共有


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 フォーム コントロールに属性を適用する」を参照してください。

<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

参照

関連項目

System.ComponentModel 名前空間
RefreshPropertiesAttribute