gpt4 book ai didi

c# - 在列表框中获取选定项目时出现 "Unable to cast"错误

转载 作者:太空宇宙 更新时间:2023-11-03 12:48:58 25 4
gpt4 key购买 nike

我只有在运行时才会在 li 上遇到这些错误,我正在使用 Visual Studio。

An unhandled exception of type 'System.InvalidCastException

Additional information: Unable to cast object of type 'System.String' to type 'System.Web.UI.WebControls.ListItem'.

 private void btnRunReport_Click(object sender, EventArgs e)
{
rptTopBottom.selDepartment = GetDepartments();
}

private string GetDepartments()
{
string selDept = "";
foreach (ListItem li in listDepartment.Items)
{
if (li.Selected)
{
selDept += li.Value + ',';
}
}
selDept = selDept.Substring(0, selDept.Length - 1);
return selDept;
}

最佳答案

异常信息

Unable to cast object of type 'System.String' to type 'System.Web.UI.WebControls.ListItem'.

表示这一行

foreach (ListItem li in listDepartment.Items)

失败是因为 listDepartment.Items 似乎包含 string 类型的元素,而不是 System.Web.UI.WebControls.ListItem 类型的元素.

您正在使用 System.Windows.Forms.ListBox。此列表框' Items property 是一个对象集合,它完全包含您添加的对象。它不包含 System.Web.UI.WebControl.ListItem

你应该使用 ListBox.SelectedItems属性代替:

foreach (string s in listDepartment.SelectedItems)
selDept += s + ',';

关于c# - 在列表框中获取选定项目时出现 "Unable to cast"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36305779/

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