一、Dev单元格】的更多相关文章

二.获取表格数据 int selectRow = gridView1.GetSelectedRows()[0]; string id = this.gridView1.GetRowCellValue(selectRow, "id").ToString(); string colValue = this.gridView1.GetRowCellValue(this.gridView1.FocusedRowHandle, this.gridView1.Columns["qty&q…
Dev控件GridView单元格绑定控件 //文本按钮 RepositoryItemButtonEdit btnFields = new RepositoryItemButtonEdit();//创建控件 btnFields.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(btnField_ButtonClick);//事件绑定 gridView1.Columns["Fields"…
在用友金蝶等财务软件中,经常需要输入货币类型的数据, 那么这种输入框要如何制作呢? 扩展DataGridView 的功能  出自在天空飞翔博客 http://www.cnblogs.com/michaelhuwei/archive/2010/07/07/1772965.html 如果要使用DEV控件XtraGrid实现同样的效果 需要实现 GridView两个事件,CustomDrawCell和CustomDrawFooterCell 效果如下 实现代码如下 绘制单元格货币格式线条 privat…
Dev 默认的合并方式,只要(垂直方向)相邻两个单元格的值相同都会进行合并,这种方式并不是最优的,所以需要在进行合并的过程中进行判断. 方式如下: 1:先设置需要合并的列为允许合并 OptionsView.AllowCellMerge = true;(视图) OptionsColumn.AllowMerge = true; (对应列)  2:在CellMerge事件中进行判断 private void gdvOrder_CellMerge(object sender, DevExpress.Xt…
DevExpress.XtraGrid.Views.Grid.ViewInfo.GridViewInfo Info2 = gvQueryResult.GetViewInfo() as DevExpress.XtraGrid.Views.Grid.ViewInfo.GridViewInfo; DevExpress.XtraGrid.Views.Grid.ViewInfo.GridCellInfo cellInfo2 = Info2.GetGridCellInfo(gvQueryResult.Get…
显示多行文本的方法 首先把gridcontrol的views的Optionsview里的RowAutoHeight设置为True 在In-place Editor Repository 里添加 MemoEdit控件 在Columns里选择对应的列,在ColumnEdit里选择MemoEdit控件 合并相同单元格的方法 1:设置OptionsView.AllowCellMerge 为 True 此时所有列的相邻行的相同单元格都会合并 2:如部分列不需要自动合并功能 ,只需设置指定列的 Option…
GridControl 根据单元格值改变背景色(需要用到CustomDrawCell事件) 方法1: private void gdvClient_CustomDrawCell(object sender, DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventArgs e) { if (e.Column.FieldName == "VerifyCN") //指定列 { if ((string)e.CellValue == "…
GridControl纵向合并单元格 只需设置 gridView->OptionView->AllowCellMerge=true; 效果 提示: 精确到列 前提是gridview1已经允许合并单元格(内容相同的才合并) this.gridView1.Columns["班组"].OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True; gridControl直接打印: public static voi…
string style = ""; private void gridView1_RowCellStyle(object sender, DevExpress.XtraGrid.Views.Grid.RowCellStyleEventArgs e) { if (e.Column.FieldName == "单价类型")//设背景 { style = e.CellValue.ToString(); ; } if (e.Column.FieldName == &quo…
DevExpress控件-GridControl根据条件改变单元格颜色,如下图: 解决办法:可以参考:http://www.cnblogs.com/zeroone/p/4311191.html 第一步: 第二步: 第三步: 第四步: 第五步:调用改变颜色的方法 第六步:改变颜色的方法: /// <summary> /// 设置浏览医嘱颜色 /// </summary> /// <param name="ds"></param> priva…