Vb.Net 2010 列表框

发布于 2024-11-09 11:54:59 字数 194 浏览 0 评论 0原文

所以我试图在 vb.net 2010 中编写一些代码,它将有一个列表框。

例如:

1) Apple 
2) Pizza
3) Juice

我将如何向用户显示第 2 行或任何其他行 - 我尝试使用这样的标签框来显示 Label1.Text = ListBox1.Text(2) - 不起作用。

So I am trying to code something in vb.net 2010 which will have a list box.

For example:

1) Apple 
2) Pizza
3) Juice

How would I display Line number 2 or any other to the user - I tried doing it with a label box like this
Label1.Text = ListBox1.Text(2) - does not work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

﹂绝世的画 2024-11-16 11:54:59
Label1.Text = ListBox1.Items(1).ToString()

如果你想获取当前所选项目的文本那么你可以这样做

If ListBox1.SelectedItem IsNot Nothing
    Label1.Text = ListBox1.SelectedItem.ToString()
End If
Label1.Text = ListBox1.Items(1).ToString()

if you want to get the Text of the currently selected item then you can do

If ListBox1.SelectedItem IsNot Nothing
    Label1.Text = ListBox1.SelectedItem.ToString()
End If
凉风有信 2024-11-16 11:54:59
MsgBox("List box item 1: " & ListBox1.Items(0), MsgBoxStyle.Information)
MsgBox("List box item 2: " & ListBox1.Items(1), MsgBoxStyle.Information)
MsgBox("List box item 3: " & ListBox1.Items(2), MsgBoxStyle.Information)
MsgBox("List box item 1: " & ListBox1.Items(0), MsgBoxStyle.Information)
MsgBox("List box item 2: " & ListBox1.Items(1), MsgBoxStyle.Information)
MsgBox("List box item 3: " & ListBox1.Items(2), MsgBoxStyle.Information)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文