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.
有没有一种简单的方法可以只显示最大尺寸的项目。例如,我有一个包含 20 个项目的列表,但在我的 GridView 中我只想显示 9 个。这可能吗?我有 testet MaximumRowsOrColumns 但这没有效果。
感谢新人
像下面这样的东西应该工作
public IEnumerable<Object> Items { get { return _items.Take(9); } }