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

备注

RefreshPropertiesAttribute 指示在刷新 PropertyGrid 控件时要使用的刷新模式的类型。

示例

下面的代码示例演示如何使用 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;
    }
}

继承层次结构

System.Object
   System.Attribute
    System.ComponentModel.RefreshPropertiesAttribute

线程安全

此类型的任何公共静态(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 枚举