GirdControl是数据的容器,它包含多种显示方式,GridView则是一种二维表格视图。 绑定数据源: List<Student> list = new List<Student>(); list.Add…… …… gridControl.DataSource = list; //注意这里是给 ...
分类:
其他好文 时间:
2016-06-01 19:34:09
阅读次数:
219
Row Indicator Panel Row Indicator Panel The row indicator panel represents a region displayed at the left edge of the View. The panel contains row ind ...
分类:
其他好文 时间:
2016-05-29 23:04:03
阅读次数:
1811
只读 for (int i = 0; i <9; i++) { this.gridView1.Columns[i].OptionsColumn.ReadOnly = true; } 不显示面板 如何隐藏GridControl的GroupPanel表头 设置Run Design->OptionsVie ...
分类:
其他好文 时间:
2016-05-11 23:20:33
阅读次数:
108
Dev Express之ImageComboBoxEdit,RepositoryItemImageComboBox使用方式 1.使用ImageComboBoxEdit实现下拉框键值数据函数 2.使用RepositoryItemImageComboBox实现GridControl内容Cell内下拉键值 ...
分类:
其他好文 时间:
2016-05-11 13:24:37
阅读次数:
214
一、如何解决单击记录整行选中的问题 View->OptionsBehavior->EditorShowMode 设置为:Click 二、如何新增一条记录 (1)、gridView.AddNewRow() (2)、实现gridView_InitNewRow事件 三、如何解决GridControl记录能 ...
分类:
其他好文 时间:
2016-05-08 16:27:15
阅读次数:
178
一、GridControl 的Columns中添加列 1、列名:FieldName命名为img 2、类型:ColumnEdit属性中 选择PictureEdit类型(RepositoryItemPictureEdit) 二、GridControl绑定的数据,不管是DataTable、List或者其他 ...
分类:
其他好文 时间:
2016-04-21 01:42:01
阅读次数:
426
在显示大量数据时一般采用分页显示,但是最近用户需要滚动显示,那么问题来了,滚动显示要求将数据全部查询回来,这显然会导致显示速度很慢。 好在想到一种方式,就是当用户滚动鼓动条的时候再查询下面的数据。好吧 不多说了 上代码 前台绑定只需要这么写就可以ScrollViewer.ScrollChanged ...
//设置combobox下拉框 private void GetComboBox(string str) { RepositoryItemComboBox combobox = new RepositoryItemComboBox(); combobox.Items.Add(str); combob
分类:
其他好文 时间:
2016-03-22 18:52:25
阅读次数:
1109
首先新建一个Win Form测试项目,拖一个GridControl控件到窗体上。 运行效果:
分类:
其他好文 时间:
2016-03-15 18:35:02
阅读次数:
756
解决方案: 打开设计器,找到OptionsView,往下拉设置showGroupPanel为false
分类:
其他好文 时间:
2016-03-09 12:40:34
阅读次数:
131