Multi-level header GridView WPF
问题 I need to set the listview view to a gridview that have a complex header like this (based on a 3 dimensional object list i created): | ---------- LEVEL 0 ------------ | | -- Level 1a -- | -- Level 1b -- | | Lvl A | Lvl B | Lvl A | Lvl B | EDIT: This is more ore less my object model public class Measures { public string Caption { get; set; } public List<Threshold> ThresholdList { get; set; } } public class Threshold { public string Caption { get; set; } public double Value1 { get; set; }