Dev Gridcontrol 设置当前行字体

简介: Font font = new System.Drawing.Font("",30,FontStyle.Bold); gridView1.Appearance.FocusedRow.Font = font;System.Drawing.Font作者:jiankunking 出处:http://blog.csdn.net/jiankunking
Font font = new System.Drawing.Font("",30,FontStyle.Bold); 
gridView1.Appearance.FocusedRow.Font = font;

作者:jiankunking 出处:http://blog.csdn.net/jiankunking
目录
相关文章
|
6月前
dev combobox edit 怎么设置让选项清空
dev combobox edit 怎么设置让选项清空
|
6月前
|
C#
C# DEV 关于设置gridview 指定单元格字体为红色
C# DEV 关于设置gridview 指定单元格字体为红色
dev gridcontrol 单选框效果
private void gridView1_CellValueChanging(object sender, DevExpress.XtraGrid.Views.Base.CellValueChangedEventArgs e) { //此处4是单选框所在的列号 if (e.Column.ColumnHandle != 4)
3491 0
ObjectArx学习笔记-设置字体样式
实现代码: static void qxzyOperateLayer_AddStyle(void) { AcDbTextStyleTable *pTextStyleTbl; acdbHostApplicationServices()->workingDatabase() ->getTextStyleTable(pTextStyleTbl, AcDb::kFo
3472 0
Dev Treelist控件显示行号
#region 显示行号 private void treeList1_CustomDrawNodeIndicator(object sender, DevExpress.XtraTreeList.CustomDrawNodeIndicatorEventArgs e) { DevExpress.XtraTreeList.T
1256 0
Dev GridControl 小结
作者:jiankunking 出处:http://blog.csdn.net/jiankunking 0、基础操作 //删除记录 this.gridView1.DeleteSelectedRows(); //添加记录 this.gridView1.AddNewRow(); 1、确认当前正在编辑的单元格的输入 this.gridview1.CloseEditor();2、得到单元格数据(0行0
1352 0
Dev gridcontrol获取选定行,指定列单元格的内容
//mOIDFiledName为要获取列的列名 private string GetSelectOID(string mOIDFiledName) { int[] pRows = this.gridView1.GetSelectedRows();//传递实体类过去 获取选中的行 if (pRows.GetLength(0) > 0) return grid
2171 0