打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
RadGridView,将GridView中数据导出为需要的格式。
目前项目使用第三方空间Telerik RadControls,在数据导出方面提供便利

  可以直接使用RadGridView,将GridView中数据导出为需要的格式。

//表格数据导出privatevoid btn_export_Click(object sender, RoutedEventArgs e) {            string extension ="";            ExportFormat format = ExportFormat.Html;            RadComboBoxItem comboItem =this.rcb_format.SelectedItem as RadComboBoxItem;            string selectedItem = comboItem.Content.ToString();            switch (selectedItem)            {                case"Excel": extension ="xls";                    format = ExportFormat.Html;                    break;                case"ExcelML": extension ="xml";                    format = ExportFormat.ExcelML;                    break;                case"Word": extension ="doc";                    format = ExportFormat.Html;                    break;                case"Csv": extension ="csv";                    format = ExportFormat.Csv;                    break;            }            SaveFileDialog dialog =new SaveFileDialog();            dialog.DefaultExt = extension;            dialog.Filter = String.Format("{1} files (*.{0})|*.{0}|All files (*.*)|*.*", extension, selectedItem);            dialog.FilterIndex =1;            if (dialog.ShowDialog())            {                using (Stream stream = dialog.OpenFile())                {                    GridViewExportOptions exportOptions =new GridViewExportOptions();                    exportOptions.Format = format;                    exportOptions.ShowColumnFooters =true;                    exportOptions.ShowColumnHeaders =true;                    exportOptions.ShowGroupFooters =true;                    this.radgridview.Export(stream, exportOptions);                }            } }
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
扩展GridView控件(索引) - 增加多个常用功能 (转载)
分享:Yii2 Gridview时间区间筛选插件-DateRangePicker
介绍Android上个性化的View,包括ListView、ActionBar、Menu、ViewPager、Gallery、GridView、ImageView等
.MP4 versus .M4A
Writing a Recipe for ASP.NET MVC 4 Developer Preview
The Document Viewer
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服