有没有办法使用为每个属性定义的 [DisplayName] 作为 a 中的字段PivotGridControl
?
public class Dto
{
[DisplayName("Identifier")]
public int Id {get;set;}
[DisplayName("Number")]
public string Num {get;set;}
...
//other properties
}
使用以下代码导致 show Id和Num as Pivot Fields
,但我希望改为显示Identifire和Number :
IList<Dto> result = CreateDtoList();
var bsOrderItems = new BindingSource(DataSource = result);
pivotGridControl.DataSource = bsOrderItems;
pivotGridControl.RetrieveFields();