在我的程序中,我使用了一个列表框,在这个列表框中我添加了一些项目。
现在我想知道如何获取列表框项目的数量并显示文本框中的项目数量。当项目数量不固定时。
假设您的列表框名为 ListBox1,文本框为 TextBox1。那么你需要的代码是
TextBox1.Text = ListBox1.Items.Count.ToString();
当然,了解您的平台(WinForms、WebForms、Html 等)将有助于获得更准确的答案。
我想为使用 WPF 的人提供一个答案。
<ListBox ItemsSource="{Binding Path=Parts}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" >
<Label Content="{Binding CurrentPart, Mode=OneWay}" />
<Label Content="{Binding Path=Parts.Count}"
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>