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.
我有一个具有数据网格的 WPF 应用程序。数据网格中的一列有一个组合框。我希望组合框的每个实例都有自己的 itemsource。这可能吗?
是的。这个有可能。
只需将 ItemSource 属性设置为您想要的任何集合。如果您愿意,您甚至可以对它进行数据绑定。
这是一篇关于Code Project上的组合框和数据绑定的好文章
对的,这是可能的。
只需在网格的“RowDataound”事件中找到组合框。并将每个组合框与不同的数据源绑定。