1. 首页
  2. 编程语言
  3. C#
  4. 打印和打印预览组件默认可打印DataGridView并可扩展

打印和打印预览组件默认可打印DataGridView并可扩展

上传者: 2019-01-12 06:10:52上传 DLL文件 112KB 热度 46次
一个可扩展的打印组件,默认实现了DataGridView的打印和打印预览。 用法: CommonPrinter Printer = new CommonPrinter(); Printer.DocumentTitle = this.Text;//设置标题 Printer.Summary = "摘要"; Printer.PrintContent = this.DisplayDataGridView;//要打印的DataGridView Printer.StartPrint(this); 使用publi
用户评论
码姐姐匿名网友 2019-01-12 06:10:52

打印单个DataGridView 能够实现,但是多个的话就不行了