• 大小: 786KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-14
  • 语言: C#
  • 标签: c#  打印  打印预览  

资源简介

c#实现打印功能,还可以打印预览.打印窗体中显示的内容

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
//Download by http://www.codefans.net
namespace PrintFormData
{
    public partial class PrintFormData : Form
    {
        public PrintFormData()
        {
            InitializeComponent();
        }

        private void printDocument1_PrintPage(object sender System.Drawing.Printing.PrintPageEventArgs e)
        {
            e.Graphics.DrawString(label1.Text new Font(“宋体“ 10 Fontstyle.Regular) Brushes.Black 260 400);
            e.Graphics.DrawString(textBox1.Text new Font(“宋体“ 10 Fontstyle.Regular) Brushes.Black 330 400);
            e.Graphics.DrawString(label2.Text new Font(“宋体“ 10 Fontstyle.Regular) Brushes.Black 270420);
            e.Graphics.DrawString(textBox2.Text new Font(“宋体“ 10 Fontstyle.Regular) Brushes.Black 330 420);
            e.Graphics.DrawString(label3.Text new Font(“宋体“ 10 Fontstyle.Regular) Brushes.Black 270 440);
            e.Graphics.DrawString(textBox3.Text new Font(“宋体“ 10 Fontstyle.Regular) Brushes.Black 330 440);
        }

        private void button1_Click(object sender EventArgs e)
        {
            printDialog1.ShowDialog();
            printPreviewDialog1.Document = this.printDocument1;
            printPreviewDialog1.ShowDialog();
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

----------- ---------  ---------- -----  ----

              9763362                    19


评论

共有 条评论