标题未出现在 MAUI collectionView 中

问题描述 投票:0回答:1
maui collectionview
1个回答
0
投票

在 Winodws 平台上,存在一个已知问题:CollectionView 页眉和页脚在显示页眉时未显示 #14557。

要修复此问题,只需将以下代码放入 /Platforms/Windows/App.xaml.cs 中 App.xaml.cs 的构造函数中即可。

CollectionViewHandler.Mapper.AppendToMapping("HeaderAndFooterFix", (_, collectionView) => { collectionView.AddLogicalChild(collectionView.Header as Element); collectionView.AddLogicalChild(collectionView.Footer as Element); });
    
© www.soinside.com 2019 - 2024. All rights reserved.