在 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);
});