为Winform的DevExpressControl的GridControl添加按扭列...
分类:
其他好文 时间:
2015-04-21 18:16:15
阅读次数:
227
用DevExpress的GridControl展示层次数据结构。...
分类:
其他好文 时间:
2015-04-21 18:14:24
阅读次数:
176
代码如下//using System;using System.Windows.Forms;using DevExpress.XtraEditors;namespace WindowsFormsApplication1 { public class ScrollHelper { ...
分类:
其他好文 时间:
2015-04-20 20:34:01
阅读次数:
337
通用权限框架cs部分先概述一下,cs使用vs2010+sql2008 和bs公用同一个数据库为使界面好看使用了第三方控件 donetbar和devexpress,正版是要收费的,但是你们都明白的可以找...用首页 系统主要还是5个模块 组织机构,导航菜单,员工,操作权限,角色后续会再此框架上做一个简...
分类:
Web程序 时间:
2015-04-20 16:50:58
阅读次数:
177
效果:数据源提供id、quantity1、quantity2三个字段,sum为quantity1+quantity2.步骤:1.打开gridcontrol的设计器2.设置sum列的UnboundExpression属性3.设置quantity1+quantity24.设置sum列的UnboundTy...
分类:
其他好文 时间:
2015-04-19 15:49:34
阅读次数:
537
从事winform开发已经快三年了,这三年中两年使用DevExpress控件进行winform系统开发,对Dev控件有自己的一些思考,下面就常用的表格控件GridControl的分页进行一些讨论。在平时的系统开发中,对不对C/S系统中的列表进行分页,我和同事也有不一样的见解。同事认为C/S中Grid...
分类:
其他好文 时间:
2015-04-17 23:34:36
阅读次数:
389
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using CYSoft.UI....
分类:
其他好文 时间:
2015-04-17 14:00:27
阅读次数:
138
1. RepositoryItemCheckEdit默认有三种状态,选中状态、未选中状态和半选中状态(半选中状态通常用在TreeList中如果父节点下的子节点有选中的有未选中的,则父节点状态为半选中状态)。如果RepositoryItemCheckEdit所在的列未绑定数据源,那么该列默认只可以单选...
分类:
其他好文 时间:
2015-04-15 18:41:32
阅读次数:
149
首先将图片添加到ImageList中添加GridView中Column void gridView1_CustomUnboundColumnData(object sender, DevExpress.XtraGrid.Views.Base.CustomColumnDataEventA...
分类:
其他好文 时间:
2015-04-15 13:07:55
阅读次数:
320
刚接触DevExpress 第三方控件,把DataGrid控件的常见用法整理一下,大家共同学习:说明:gcTest 是gridControl名称gvText 是gridView 名称
//数据绑定
DataTable dt=new DataTable ();
gcTest.DataSource = dt;
//隐藏最上面...
分类:
其他好文 时间:
2015-04-14 16:37:13
阅读次数:
1451