gpt4 book ai didi

c# - 在 Listbox.SelectionMode 中选择多个项目时出现问题

转载 作者:行者123 更新时间:2023-11-30 22:47:49 26 4
gpt4 key购买 nike

我有一个 Web 部件,我想在列表框中选择多个项目,非常简单。我正在使用 webcontrols 命名空间。所以我将列表框声明为列表框 lBox = new 列表框();lBox.ID="lbox";lBox.SelectionMode="多个";

但它不接受这一点。我得到的错误是无法将字符串类型转换为列表框选择......

如果有人知道我哪里错了?

谢谢,

最佳答案

来自 Programmatically Select Multiple Items

<div>    
<asp:ListBox ID="ListBox1" runat="server">
<asp:ListItem Value="One" />
<asp:ListItem Value="Two" />
<asp:ListItem Value="Three" />
<asp:ListItem Value="Four" />
<asp:ListItem Value="Five" />
</asp:ListBox></div>
</div>

代码隐藏:

protected void Page_Load(object sender, EventArgs e)
{
ListBox1.SelectionMode = System.Web.UI.WebControls.ListSelectionMode.Multiple;
for (int i = 0; i < ListBox1.Items.Count; i++)
{
// Select the first, third and fifth items in the listbox
if(i == 0 || i == 2 || i == 4)
{
ListBox1.Items[i].Selected = true;
}
}
}

关于c# - 在 Listbox.SelectionMode 中选择多个项目时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2093634/

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