C#的Windows form中如何对listbox中的Item进行相加
发布网友
发布时间:2天前
我来回答
共1个回答
热心网友
时间:2天前
控件:ListBox 、 Button
<div>
<asp:ListBox ID="ListBox1" runat="server">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem Value="2">2</asp:ListItem>
<asp:ListItem Selected="True" Value="3">3</asp:ListItem>
<asp:ListItem>4</asp:ListItem>
</asp:ListBox>
<br />
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Result" />
</div>
Button 点击 处理:
protected void Button1_Click(object sender, EventArgs e)
{
int sum = 0;
foreach (ListItem item in ListBox1.Items)
{
sum += System.Int32.Parse(item.Value);
}
Response.Write(sum);
}