DriveListBox.Items[] 属性

定义

获取 DriveListBox 中包含的项。

重载

Items

获取 DriveListBox 中包含的项。

Items[Int32]

获取 DriveListBox 中指定索引的项。

Items

获取 DriveListBox 中包含的项。

public:
 property System::Windows::Forms::ComboBox::ObjectCollection ^ Items { System::Windows::Forms::ComboBox::ObjectCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.ComboBox.ObjectCollection Items { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Items : System.Windows.Forms.ComboBox.ObjectCollection
Public ReadOnly Property Items As ComboBox.ObjectCollection

属性值

一个 ListBox.ObjectCollection,表示 DirListBox 中的项。

属性

注解

使用此属性可检索当前显示在 中的 DriveListBox驱动器列表。

注意

Microsoft.VisualBasic.Compatibility.VB6 命名空间中的函数和对象用于工具从 Visual Basic 6.0 升级到 Visual Basic。 多数情况下,这些函数和对象可再现 .NET Framework 中其他命名空间的功能。 只有当 Visual Basic 6.0 代码模型与 .NET Framework 实现有显著区别时,才必须使用这些函数和对象。

另请参阅

适用于

Items[Int32]

获取 DriveListBox 中指定索引的项。

public:
 property System::String ^ Items[int] { System::String ^ get(int Index); };
[System.ComponentModel.Browsable(false)]
public string Items[int Index] { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Items(int) : string
Public ReadOnly Property Items(Index As Integer) As String

参数

Index
Int32

列表中某个特定项的编号。

属性值

一个 String,包含指定 Index 处的驱动器的名称。

属性

注解

使用此属性检索 中 DriveListBox驱动器的名称。

注意

Microsoft.VisualBasic.Compatibility.VB6 命名空间中的函数和对象用于工具从 Visual Basic 6.0 升级到 Visual Basic。 多数情况下,这些函数和对象可再现 .NET Framework 中其他命名空间的功能。 只有当 Visual Basic 6.0 代码模型与 .NET Framework 实现有显著区别时,才必须使用这些函数和对象。

另请参阅

适用于