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.
我正在尝试自定义 gridview 预建模板。默认情况下,它有多个组和每个组内的多个项目。
我只有一个组和该组的多个项目。我如何配置 gridview 以满足我的需求。
任何人都可以让我知道任何在线资源或任何建议吗?
如果您只有一个组,那么实际上您没有任何组。我对你的建议是使用 aGridView而不要使用分组。所以,不要告诉CollectionViewSource你对你的数据进行分组,因为你真的没有分组——你甚至可以直接绑定到你的列表。
GridView
CollectionViewSource
然后,如果需要,可以将“组标题”放置在 UI 中的Header属性中GridView或其上方。同样,您不必分组 aGridView听起来您无论如何都不想这样做。这并不意味着您会失去任何功能。
Header
祝你好运!