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.
谁能给我一个如何将数据与集合和列表绑定的示例。我知道如何将数据与数据绑定控件绑定。但是,与集合和列表绑定听起来有点困难。
谢谢。
问候,
纳伦。
您可以使用 Collection.Add 或 Collection.AddRange ,其中 Collection 可以是任何集合,如 ArrayList 在您的情况下将您的数据添加到集合中。这里不涉及绑定。绑定在数据和控件之间完成。集合用于收集数据,不涉及绑定。