Data Annotation for column width
问题 I'm binding a collection of objects to a DevExpress GridControl, and using 15.1 Data Annotations to customise the look. However I'm struggling to find anything about setting column size of a property. Is this possible through annotations? Class with annotations: public class DataFeedback { [Display(Name = "Row Num", Order = 0)] public int RowNum { get; set; } [Display(Name = "Description", Order = 1)] public string Desc { get; set; } public DataFeedback(int rowNum, string desc) { RowNum =