我无法使用存储在不同类中的信息填充列表框。此类称为 TeacherTools,其中使用了许多方法来控制该列表中的学生对象。
我要做的基本上是将学生的名字添加到列表中,但我不确定语法。
public partial class TeacherTools : Window
{
private List<Student> studentList = new List<Student>();
public List<Student> Kids
{
get { return studentList; }
set { studentList = value; }
}
}
public partial class MainWindow : Window
{
private void beginTest(object sender, RoutedEventArgs e)
{
foreach (Student s in Kids) //Unsure here
{
studentsList.Items.Add(s.Name);
}
}
}
感谢您的时间