gpt4 book ai didi

c# - 如何在 ListBox 中显示类的属性?

转载 作者:行者123 更新时间:2023-11-30 19:54:02 25 4
gpt4 key购买 nike

在我的课上 Student我有一个属性(property)studentName我希望它显示在我的列表框的每一行上。

我的 ListBox绑定(bind)到 List<Students> studentList

如何将列表中每个学生的姓名显示到 ListBox 上?

例如

foreach(Student s in studentList){
ListBox.DisplayOnNewLine(s.studentName);
}

最佳答案

或者,您可以按如下方式使用数据绑定(bind):

ListBox.DisplayMember = "studentName";
ListBox.DataSource = studentList;

关于c# - 如何在 ListBox 中显示类的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44411913/

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