私は階層データモデルを持っています:
public class AssetClassLevelViewModel
{
public string AssetClassName {get; set;}
public ObservableCollection<AssetClassLevelViewModel> ChildAssetClasses {get; set;}
public ObservableCollection<ProductHoldingsWithAllocationViewModel> ProductHoldings {get; set;}
}
画像に表示されている列ヘッダーは、ProductHoldingsWithAllocationViewModel プロパティを反映しています。
列ヘッダーをグリッドの上に移動する必要があり、各グループ レベルでそれらを繰り返したくありません。
これに対する解決策はありますか?xaml で、HeaderPlacement
プロパティを次のように設定しましたOnTopOnly
ありがとう
ハサナイン