gpt4 book ai didi

vb.net - 将文本框中的项目添加到列表(字符串)

转载 作者:行者123 更新时间:2023-12-04 04:40:25 24 4
gpt4 key购买 nike

我是 vb.net 的新手。希望了解如何将项目添加到列表中。目前,它只添加了一项。我需要它来保存许多项目,并且必须能够在另一个文本框中显示所有项目。请帮忙!

Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim patients As List(Of String) = New List(Of String)
patients.Add(TextBox1.Text)

TextBox2.Text = patients.Count
End Sub
End Class

最佳答案

每次单击该按钮时,都会创建一个列表变量的新副本,当然,它最初是空的。您添加了一项,但这就​​是游戏的结束。
如果要保留列表的内容,需要将List变量移动到全局类作用域

Public Class Form1
Dim patients As List(Of String) = New List(Of String)

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
patients.Add(TextBox1.Text)
TextBox2.Text = patients.Count

End Sub
.....
End Class

关于vb.net - 将文本框中的项目添加到列表(字符串),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18990890/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com