Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
到目前为止,A 已经创建了对象类模块和一种输入由不同类型组成的数据的方法。创建对象后,将其存储在列表中,然后可以将这些对象写入 XML 文件或从中读取。我现在遇到的问题是在表单上显示数据。
所以基本上它是从 XML 文件中读取的事实是无关紧要的。你真正想知道的是如何在 WinForm 上显示集合中的对象,对吗?有不同的方法。最简单的可能是这样的:
DataGridView
myDataGridView.DataSource = myList; //where myList is your List<T>