PropertyDescriptorCollection.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置指定的 PropertyDescriptor。
重载
Item[Int32] |
获取或设置指定索引处的 PropertyDescriptor。 |
Item[String] |
获取或设置具有指定名称的 PropertyDescriptor。 |
Item[Int32]
获取或设置指定索引处的 PropertyDescriptor。
public:
virtual property System::ComponentModel::PropertyDescriptor ^ default[int] { System::ComponentModel::PropertyDescriptor ^ get(int index); };
public virtual System.ComponentModel.PropertyDescriptor this[int index] { get; }
member this.Item(int) : System.ComponentModel.PropertyDescriptor
Default Public Overridable ReadOnly Property Item(index As Integer) As PropertyDescriptor
参数
- index
- Int32
要获取或设置的 PropertyDescriptor 的从零开始的索引。
属性值
具有指定索引号的 PropertyDescriptor。
例外
index
参数不是 Item[Int32] 的有效索引。
示例
下面的代码示例使用 Item[] 属性在文本框中打印由索引号指定的 的名称 PropertyDescriptor 。 由于索引号从零开始,因此此示例打印第二 PropertyDescriptor个 的名称。 它要求 button1
已在窗体上实例化 。
void PrintIndexItem()
{
// Creates a new collection and assigns it the properties for button1.
PropertyDescriptorCollection^ properties = TypeDescriptor::GetProperties( button1 );
// Prints the second property's name.
textBox1->Text = properties[ 1 ]->ToString();
}
private void PrintIndexItem() {
// Creates a new collection and assigns it the properties for button1.
PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(button1);
// Prints the second property's name.
textBox1.Text = properties[1].ToString();
}
Private Sub PrintIndexItem()
' Creates a new collection and assigns it the properties for button1.
Dim properties As PropertyDescriptorCollection = TypeDescriptor.GetProperties(button1)
' Prints the second property's name.
textBox1.Text = properties(1).ToString()
End Sub
注解
索引号从零开始。 因此,必须从特定 PropertyDescriptor 的数字位置中减去 1 才能访问该 PropertyDescriptor。 例如,若要获取第三 PropertyDescriptor个 ,需要指定 myColl[2]
。
另请参阅
适用于
Item[String]
获取或设置具有指定名称的 PropertyDescriptor。
public:
virtual property System::ComponentModel::PropertyDescriptor ^ default[System::String ^] { System::ComponentModel::PropertyDescriptor ^ get(System::String ^ name); };
public virtual System.ComponentModel.PropertyDescriptor this[string name] { get; }
public virtual System.ComponentModel.PropertyDescriptor? this[string name] { get; }
member this.Item(string) : System.ComponentModel.PropertyDescriptor
Default Public Overridable ReadOnly Property Item(name As String) As PropertyDescriptor
参数
- name
- String
要从集合中获取的 PropertyDescriptor 的名称。
属性值
具有指定名称的 PropertyDescriptor,或者如果该属性不存在,则为 null
。
示例
下面的代码示例使用 Item[] 属性打印索引所指定的 的 PropertyDescriptor 组件类型。 它要求 button1
已在窗体上实例化和 textBox1
。
void PrintIndexItem2()
{
// Creates a new collection and assigns it the properties for button1.
PropertyDescriptorCollection^ properties = TypeDescriptor::GetProperties( button1 );
// Sets a PropertyDescriptor to the specific property.
PropertyDescriptor^ myProperty = properties[ "Opacity" ];
// Prints the display name for the property.
textBox1->Text = myProperty->DisplayName;
}
private void PrintIndexItem2() {
// Creates a new collection and assigns it the properties for button1.
PropertyDescriptorCollection properties =
TypeDescriptor.GetProperties(button1);
// Sets a PropertyDescriptor to the specific property.
PropertyDescriptor myProperty = properties["Opacity"];
// Prints the display name for the property.
textBox1.Text = myProperty.DisplayName;
}
Private Sub PrintIndexItem2()
' Creates a new collection and assigns it the properties for button1.
Dim properties As PropertyDescriptorCollection = _
TypeDescriptor.GetProperties(button1)
' Sets a PropertyDescriptor to the specific property.
Dim myProperty As PropertyDescriptor = properties("Opacity")
' Prints the display name for the property.
textBox1.Text = myProperty.DisplayName
End Sub
注解
搜索 Item[] 名称时, 属性区分大小写。 也就是说,名称“Pname”和“pname”被视为两个不同的属性。