WPF DataGrid 分组

public  ListCollectionView collection;
collection = new ListCollectionView(obj.empData); collection.GroupDescriptions.Add(new PropertyGroupDescription("Country"));
dgData.Items.SortDescriptions.Add
(new System.ComponentModel.SortDescription
("Country"
,System.ComponentModel.ListSortDirection.Descending
)
);
上一篇:jquery商城购物车右侧悬浮加入购物车动画效果


下一篇:Python 字符串处理(转)