Tag: datatemplate valueconverter

使用valueconverter的动态datatemplate

我想在wpftoolkit数据网格中显示数据,其中数据是其集合 public class Thing { public string Foo { get; set; } public string Bar { get; set; } public List Candidates { get; set; } } public class Candidate { public string Name { get; set; } public CandidateType CandidateType { get; set; } } public enum CandidateType { Type1, Type2, Type42 } 其中Candidates列表中的候选者数量可在运行时配置。 […]