首先需要属性栏中设置这一列可以合并,再在CellMerge方法中写 目的是根据三级标题这一列如果有连续相同的数据,就合并题目列、分值列,并且把合并的那几行内容都显示出来而不是只显示合并的第一行。 cellmerge函数中if(valueFirstColumn1 == valueFirstColumn ...
分类:
其他好文 时间:
2019-01-18 19:50:44
阅读次数:
282
gridcontrol中添加按钮的步骤: 1. 把列的ColumnEdit属性设置为RepositoryItemButtonEdit 2. 把TextEditStyle属性设置为HideTextEditor; 3. 把Buttons的Kind属性设置为Glyph; 4. 把Buttons的HorzA ...
分类:
其他好文 时间:
2019-01-13 16:05:31
阅读次数:
461
private void gridView1_CustomDrawFooterCell(object sender, DevExpress.XtraGrid.Views.Grid.FooterCellCustomDrawEventArgs e) { int dx = e.Bounds.Height; ...
分类:
其他好文 时间:
2019-01-02 13:34:02
阅读次数:
252
1.分组在Column中将要分组的行设置GroupIndex=0,1,2...不启用置为-12.设置组行字体在GridView的GroupRow等与Group有关的Appreaence中设置3.设置组行的选中颜色添加事件private void gridViewStu_CustomDrawGroup ...
这里绑定fiedName绑定的值要和 gridLookupedit绑定的ValueMember的值一致 否则就会出现空白 ...
分类:
其他好文 时间:
2018-11-06 19:30:27
阅读次数:
418
Devexpress使用之:GridControl控件 Devexpress系列控件功能很强大,使用起来也不太容易,我也是边摸索边使用,如果有时间我会把常用控件的使用方法整理出来的。 原文链接 http://www.cnblogs.com/habin/archive/2009/04/24/14426 ...
分类:
其他好文 时间:
2018-11-03 14:07:37
阅读次数:
136
首先在GridControl里在Repository中添加一个GridLookUpEdit 在设置DisPlayMember(界面显示字段) 然后在后台绑定数据 List<EntityBrand> entityBrand = client.GetBrandList(); this.repositor ...
分类:
其他好文 时间:
2018-11-03 11:16:24
阅读次数:
256
(1)点击Run Designer (2)点击要修改的列,把列的ColumnEdit属性设置为RepositoryItemButtonEdit (3)把TextEditStyle属性设置为HideTextEditor; (4)把buttons的Kind属性设置为Glyph; (5)把Buttons的 ...
分类:
其他好文 时间:
2018-10-30 21:57:48
阅读次数:
185
1 2018.9.26 2 --往GridControl中添加绑定数据 3 // 房间费用 4 DataTable dtRoomInfo = new DataTable(); 5 dtRoomInfo.Columns.Add("v_name", Type.GetType("System.String... ...
分类:
其他好文 时间:
2018-10-25 14:03:45
阅读次数:
165
最近项目里需要显示商品的一系列图片,打算用CardView来显示,由于第一次使用,遇到许多问题,发现网上这方面的资源很少,所以把自己的一点点实际经验小结一下,供自己和大家以后参考。 1、选择CardView,将原来的GirView转换为CardView,如下图 效果如下: 2、控件默认是纵向排列,如 ...
分类:
其他好文 时间:
2018-10-01 10:33:51
阅读次数:
466