登录
首页 » C# » C# 套打Demo

C# 套打Demo

于 2021-05-06 发布
0 106
下载积分: 1 下载次数: 0

代码说明:

套打Demo 【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Drawing.Printing;namespace Print_Demo{ public partial class Form1 : Form { public PrintDocument printDt = new PrintDocument(); //打印文档对象 Font printFont; //打印使用的字体 public Form1() { InitializeComponent(); } void printDt_PrintPage(object sender, PrintPageEventArgs e) { float pointX = 10; float pointY = 10; e.Graphics.DrawString("打印内容", new Font("宋体", 16F), Brushes.Black, pointX 60, pointY); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 26,pointX 300,pointY 26); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 35); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 56, pointX 300, pointY 56); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 65); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 86, pointX 300, pointY 86); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 95); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 116, pointX 300, pointY 116); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 125); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 146, pointX 300, pointY 146); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 155); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 176, pointX 300, pointY 176); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 185); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 206, pointX 300, pointY 206); e.Graphics.DrawString("检测结果", printFont, Brushes.Black, pointX, pointY 233); e.Graphics.DrawString("通过", new Font("宋体",22F,FontStyle.Bold), Brushes.Black, pointX 90, pointY 225); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 265, pointX 300, pointY 265); e.Graphics.DrawString("单位名称", printFont, Brushes.Black, pointX, pointY 275); } private void Form1_Load(object sender, EventArgs e) { printDt.PrintPage = new PrintPageEventHandler(printDt_PrintPage); printFont = new Font("宋体", 12F); } private void btnPrint_Click(object sender, EventArgs e) { //PrintDialog printDlg = new PrintDialog(); //printDlg.Document = printDt; //printDlg.AllowPrintToFile = true; //printDlg.AllowCurrentPage = true; //printDlg.AllowSelection = true; //printDlg.ShowDialog(); //printDlg.ShowDialog(); printDt.Print(); } private void btnLook_Click(object sender, EventArgs e) { PrintPreviewDialog printPreview = new PrintPreviewDialog(); printPreview.PrintPreviewControl.Document = printDt; printPreview.ShowDialog(this); } }}

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 串口助手调试源码
    实现串口调试
    2019-01-06下载
    积分:1
  • C#会员管理条码版(含数据库)
    数据库连接字符串 在program.cs中记账管理系统源码功能列表一、日常操作 1.消费单据:新增、修改、结算、点牌核实、查询(按日期、消费单号查询) 2.会员管理:新增、修改、新增消费、会员充值、查看消费记录、查看充值记录、会员换卡、余额转账、查询(按姓名、卡号) 3.账目清单:新增、修改、删除(需要密码)、按日期查询二、统计报表 1.会员消费统计:按日期查询、按会员卡号查询 2.会员续费统计:按日期查询、按会员卡号查询 3.员工工资统计:按月份查询、显示内容() 4.每月收支汇总:按月份查询、按日期显示、显示内容(日期、星期、散客现金收入 充值收入 其它收入=收入金额、支出金额、盈亏金额)三、系统维护 1.商品信息管理:新增商品、修改商品、商品上架、商品下架、查询        2.会员卡设置:新增、修改、删除、查询        3.收支科目管理:新增、修改、禁用、启用、查询        4.职位信息管理:查询、新增、修改、删除        5.员工信息管理:按职位查询、显示离职员工、新增、修改、查看业绩、 6.员工扣款记录:新增、修改、删除、查询(修改与删除功能只能操作本月数据)
    2020-12-03下载
    积分:1
  • C#调用visionpro
    C#调用visionpro
    2020-12-08下载
    积分:1
  • pwm测试模块 dsp
    【实例简介】pwm测试模块 dsp ti芯片 测试用例 直接可以使用
    2021-12-11 00:41:45下载
    积分:1
  • AutoCAD VBA开发精彩实例教程(1-10章实例源码下载) VBA_For_AutoCAD
    AutoCAD VBA开发精彩实例教程(1-10章实例源码下载) VBA_For_AutoCAD
    2014-06-04下载
    积分:1
  • C++实战源码-图像旋转(入门级实例512).zip
    C++实战源码-图像旋转(入门级实例512).zip
    2019-10-01下载
    积分:1
  • NPOI操作EXCEL报表(常用类库)
    NPOI操作EXCEL报表
    2019-02-26下载
    积分:1
  • c# smtp邮件发送示例源码(带附件/支持中文)
    c# smtp邮件发送示例源码(带附件/支持中文)
    2014-03-30下载
    积分:1
  • winform 文件夹浏览器示例源码
    winform 文件夹浏览器示例源码
    2013-10-03下载
    积分:1
  • html解析-AngleSharp
    html解析-AngleSharp
    2015-02-26下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 31今日下载