gpt4 book ai didi

c# - 找不到类型或命名空间名称 'List Item'

转载 作者:太空宇宙 更新时间:2023-11-03 19:36:59 26 4
gpt4 key购买 nike

我正在编写代码来上下移动列表框的元素。为此,我制作了两个按钮来向上移动元素(向上移动按钮)和向下移动元素(向下移动按钮)。这是我的代码:

if (m_lbOPFfiles.SelectedIndex != m_lbOPFfiles.Items.Count && m_lbOPFfiles.SelectedIndex != -1)
{
ListItem item = m_lbOPFfiles.SelectedItem;
int index = m_lbOPFfiles.SelectedIndex;
m_lbOPFfiles.Items.RemoveAt(index);
lstResdetails.Items.Insert(index + 1, item);
}

现在我收到 ListItem 的命名空间错误。谁能帮我改一下?

最佳答案

好吧,您还没有说您正在编写什么类型的应用程序 - Windows 窗体?网络?白皮书?假设它是 ASP.NET,您需要:

using System.Web.UI.WebControls;

在代码的顶部。如果是 WPF,您可能需要:

using System.Windows.Documents;

编辑:如果它是 Windows 窗体,则没有 ListItem 类。 ListBox.SelectedItem 返回 object,而不是 ListItem。您希望将 ListItem 类型的哪个方面与 ListBox 一起使用? (我假设您使用的是 ListBox。)您可以像对象一样将项目添加到 ListBox.Items

关于c# - 找不到类型或命名空间名称 'List Item',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/925106/

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