摘要: 首先拖入一个数据表格DataGrid控件,再拖入一个分页控件DataPager。后台进行数据绑定的代码如下:PagedCollectionViewpcv=newPagedCollectionView(itemList);pcv.PageSize=2;dataGrid1.ItemsSource=pcv;dataPager1.Source=pcv;DataPager的DisplayMode属性可以设置分页样式 阅读全文
posted @ 2012-09-02 23:07 飛雲若雪 阅读(678) 评论(0) 推荐(1) 编辑
摘要: 实现的效果如图:前台实现:<UserControl.Resources><Stylex:Key="DataGridColumnHeaderCheckBox"TargetType="data_primitives:DataGridColumnHeader"><SetterProperty="Template"><Setter.Value><ControlTemplateTargetType="data_primitives:DataGridColumnHeader" 阅读全文
posted @ 2012-09-02 17:36 飛雲若雪 阅读(1387) 评论(0) 推荐(2) 编辑
摘要: WinCE开发中的DataGrid控件没有选中行的属性,但是我们可以通过另外一种方式来模拟选中一行的效果,要实现这个效果需要为控件添加GotFocus和CurrentCellChanged事件。实现的代码如下:privatevoiddataGrid1_GotFocus(objectsender,Ev... 阅读全文
posted @ 2012-09-02 11:20 飛雲若雪 阅读(5183) 评论(1) 推荐(2) 编辑