• 大小: 0.40M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: C#  c  打印  基础  

资源简介

C#实现基础打印功能

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Drawing.Printing;

namespace 打印
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        StringReader lineReader = null;

        Font printFont = new Font(“Arial“ 10);
        SolidBrush myBrush = new SolidBrush(Color.Black);//刷子
        private void Form1_Load(object sender EventArgs e)
        {

        }

        private void printDocument1_PrintPage(object sender System.Drawing.Printing.PrintPageEventArgs e)
        {


            Graphics g = e.Graphics; //获得绘图对象

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-10-24 00:46  1419641011 张家燕_打印\
     目录           0  2016-10-24 00:38  1419641011 张家燕_打印\打印\
     文件      371897  2016-10-24 00:45  1419641011 张家燕_打印\打印.docx
     文件         860  2016-10-24 00:37  1419641011 张家燕_打印\打印.sln
     文件       17408  2016-10-24 00:45  1419641011 张家燕_打印\打印.suo
     目录           0  2016-10-24 00:37  1419641011 张家燕_打印\打印\bin\
     目录           0  2016-10-24 00:39  1419641011 张家燕_打印\打印\bin\Debug\
     文件       22528  2016-10-24 00:42  1419641011 张家燕_打印\打印\bin\Debug\打印.exe
     文件       26112  2016-10-24 00:42  1419641011 张家燕_打印\打印\bin\Debug\打印.pdb
     文件       11600  2016-10-24 00:37  1419641011 张家燕_打印\打印\bin\Debug\打印.vshost.exe
     文件         490  2016-07-16 19:44  1419641011 张家燕_打印\打印\bin\Debug\打印.vshost.exe.manifest
     文件        4318  2016-10-24 00:42  1419641011 张家燕_打印\打印\Form1.cs
     文件        6660  2016-10-24 00:42  1419641011 张家燕_打印\打印\Form1.Designer.cs
     文件       22138  2016-10-24 00:42  1419641011 张家燕_打印\打印\Form1.resx
     目录           0  2016-10-24 00:37  1419641011 张家燕_打印\打印\obj\
     目录           0  2016-10-24 00:37  1419641011 张家燕_打印\打印\obj\x86\
     目录           0  2016-10-24 00:42  1419641011 张家燕_打印\打印\obj\x86\Debug\
     文件        2867  2016-10-24 00:37  1419641011 张家燕_打印\打印\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        6296  2016-10-24 00:42  1419641011 张家燕_打印\打印\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     目录           0  2016-10-24 00:37  1419641011 张家燕_打印\打印\obj\x86\Debug\TempPE\
     文件         491  2016-10-24 00:39  1419641011 张家燕_打印\打印\obj\x86\Debug\打印.csproj.FileListAbsolute.txt
     文件         975  2016-10-24 00:42  1419641011 张家燕_打印\打印\obj\x86\Debug\打印.csproj.GenerateResource.Cache
     文件       22528  2016-10-24 00:42  1419641011 张家燕_打印\打印\obj\x86\Debug\打印.exe
     文件       10728  2016-10-24 00:42  1419641011 张家燕_打印\打印\obj\x86\Debug\打印.Form1.resources
     文件       26112  2016-10-24 00:42  1419641011 张家燕_打印\打印\obj\x86\Debug\打印.pdb
     文件         180  2016-10-24 00:39  1419641011 张家燕_打印\打印\obj\x86\Debug\打印.Properties.Resources.resources
     文件         487  2016-10-24 00:37  1419641011 张家燕_打印\打印\Program.cs
     目录           0  2016-10-24 00:37  1419641011 张家燕_打印\打印\Properties\
     文件        1344  2016-10-24 00:37  1419641011 张家燕_打印\打印\Properties\AssemblyInfo.cs
     文件        2864  2016-10-24 00:37  1419641011 张家燕_打印\打印\Properties\Resources.Designer.cs
     文件        5612  2016-10-24 00:37  1419641011 张家燕_打印\打印\Properties\Resources.resx
............此处省略3个文件信息

评论

共有 条评论