• 大小: 0.14M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 打印  WinFrom  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Drawing;
using System.Windows.Forms;

namespace OmnipotentPrint
{
    public partial class frmPrint : Form
    {
        public static DataSet DataSetGrid;
        public bool Aspect = true;
        public bool Boundary;
        public int Header = 30;
        public Color LineColor = Color.Black;
        public int LineWidth = 1;
        public bool PrintLeftLine = true;
        public bool PrintUnitLine = true;
        public bool PrintUpDownLine = true;
        public int Row = 23;

        #region 设置打印数据的相关信息

        public void MSetUp(PrintClass dgp)
        {
            string n = “false“;
            string[] margin = new string[4];
            if (chkMargin.Checked)
                n = “true“;
            e

评论

共有 条评论