- 积分
- 347
- 在线时间
- 97 小时
- 主题
- 8
- 注册时间
- 2015-6-25
- 帖子
- 99
- 最后登录
- 2024-10-2
- 帖子
- 99
- 软币
- 1042
- 在线时间
- 97 小时
- 注册时间
- 2015-6-25
|
//TreeList 导出
DevExpress.XtraPrinting.XlsExportOptions xls = new DevExpress.XtraPrinting.XlsExportOptions();
treeList1.ExportToXls("excel名称".xls, xls);
//GridView 2003 2007 以上版本都可以
DevExpress.XtraPrinting.XlsEx portOptions xls = new DevExpress.XtraPrinting.XlsExportOptions();
gv.ExportToXls("", xls);
|
评分
-
查看全部评分
|