请下载最新版本 错误修正: 1、private void Export2Excel(DataGridView datagridview, bool captions) int i = 0; int c = 0; int m = 0; for (c = 0; c < datagridview.Columns.Count; c++) { for (int j = 0; j 0) return; //此行这样修改 3、private int _cellHeight = 23; //原来是17,
本例子使用自定义控件方法实现,数据库使用的是SQL Server,实现过程如下:
1、新建一个自定义控件,命名为:PageControl。
2、PageControl代码如下:
public partial class PageControl : UserControl
{
//委托及事件
public delegate void BindPage(int pageSize, int pageIndex, out int totalCount);