gpt4 book ai didi

用户定义类中的 C# UpdateListBox 方法声明

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

嘿,在一个名为 Dog 的用户定义类中,我有一个存储 Dog 对象列表的列表:

List<Dog> dogList = new List<Dog>();

在主窗体上我有一个名为 dogListBox 的列表框控件。

在类中,我正在尝试创建一个更新列表框控件的方法。但是,当我尝试声明它时,在 dogListBox 下出现错误,指出 dogListBox 在当前上下文中不存在。如何访问我的表单上的列表框控件以在此方法中使用

谢谢

public void UpdateListbox()
{
dogListBox.Items.Clear();
foreach (Dog dog in dogListBox)
{
dogListBox.Items.Add(dog);
}
}

最佳答案

在具有此 UpdateListBox 的类中,您需要访问表单上的列表框(这是另一个类)

因此您需要将列表框传递给 UpdateListBox 方法....或者您需要在类中存储对 Form 的引用。

或者您在表单上添加一个方法来用列表更新列表框。

关于用户定义类中的 C# UpdateListBox 方法声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5508526/

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