1. 实现DevExpress GridControl 只有鼠标双击后才进行修改数据:修改GridView.OptionsBehavior.EditorShowMode属性为Click 2. 实现DevExpress GridControl 只有鼠标双击后才进行修改数据:修改GridView.Opt
分类:
其他好文 时间:
2016-02-24 09:19:59
阅读次数:
180
添加两个组件:BindingNavigator和BindingSource代码:using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System....
分类:
其他好文 时间:
2016-02-16 20:47:48
阅读次数:
392
GridControl一列的ColumnEdit属性中选择PictureEdit,一个RepositoryItemPictureEdit添加完成。列的FieldName设置为Image列名,如img。 GridControl绑定的数据,不管是DataTable、List或者其他源,添加一个列,列名为
分类:
其他好文 时间:
2016-01-29 11:55:21
阅读次数:
221
1、效果图 2、如上图效果,为比较常见的一种需求,一堆物品图片。有时候需要给不同物品标记,图中左上角就是一张标记性图片。在devexpress里面实现起来也比较容易。 3、部分代码: class PicModel { private Image _Pic; /// <summary> /// 图片
分类:
其他好文 时间:
2016-01-28 15:11:30
阅读次数:
122
数据绑定 首先生成table,然后更改列名,最后添加一个选择列,类型为"System.Boolean",这样在绑定上gridcontrol的时候会出现一列选择框 table.Columns["F_MeterName"].ColumnName = "电表名称"; table.Columns["F_Me
分类:
其他好文 时间:
2016-01-28 13:52:35
阅读次数:
135
需求:开发时遇到一个问题, 需要根据GridControl行数据不同,实现不同的效果 在gridView的RowCellStyle的事件中实现,需要的效果 private void gridView1_RowCellStyle(object sender, DevExpress.XtraGrid.V...
分类:
其他好文 时间:
2016-01-26 21:45:51
阅读次数:
636
1.Toolbox中找到ContextMenuStrip工具,双击添加2.点击ContextMenuStrip上小三角,EditItems, 添加选项3.选择GridControl, 编辑属性ContextMenuStrip,选择刚刚添加的ContextMenuStrip
分类:
其他好文 时间:
2016-01-25 14:51:00
阅读次数:
160
1.GridView的回车跳转单元格和换行 private void gridView1_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == 13)//按下回车 { string name = gridView1.Focus...
分类:
其他好文 时间:
2016-01-23 00:40:11
阅读次数:
228
private void checkEditAccGrouping_CheckedChanged(object sender, EventArgs e){ DevExpress.XtraGrid.Columns.GridColumn column = bandedAccountID; ...
分类:
其他好文 时间:
2016-01-04 11:40:27
阅读次数:
294
在Form中添加如下代码即可 protected override void OnShown(EventArgs e) { base.OnShown(e); gdv.OptionsFind.AlwaysVisible = fal...