zoukankan      html  css  js  c++  java
  • 利用webBrowser实现万能打印

    1.拖放webBrowser控件并写代码:

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


    namespace NursingRecords.biovision.ihospital.his.residentNurse
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
                //webBrowser1.DocumentText = "<!DOCTYPE HTML><html><head><title></title></head><body>这个是打印文档示例</body></html>";
            }


            private void button1_Click(object sender, EventArgs e)
            {
                webBrowser1.Print();
            }
        }
    }


    【2】去除打印的页眉页脚

    Windows Registry Editor Version 5.00


    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PageSetup]
    "header"=""
    "footer"=""
    "margin_bottom"="0.750000"
    "margin_left"="0.750000"
    "margin_right"="0.750000"
    "margin_top"="0.750000"
    "Print_Background"="no"
    "Shrink_To_Fit"="yes"

    -------------------------默认----------------------------

    Windows Registry Editor Version 5.00


    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PageSetup]
    "header"="&w&b页码,&p/&P"
    "footer"="&u&b&d"
    "margin_bottom"="0.750000"
    "margin_left"="0.750000"
    "margin_right"="0.750000"
    "margin_top"="0.750000"
    "Print_Background"="no"
    "Shrink_To_Fit"="yes"

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


    【3】利用万能的html文档,万能打印还远吗?


  • 相关阅读:
    python易错点2
    python易错点1
    Spring:注解组件注册
    KubeSphere建立多租户系统
    Centos7.7下KubeSphere最小化安装和定制化配置安装
    安装create-react-app
    查看react版本等信息
    react自动生成React组件命令
    sqlserver 随机数
    Error while downloading 'http://java.sun.com/xml/ns/javaee/javaee_web_services_client_1_2.xsd'
  • 原文地址:https://www.cnblogs.com/jehnjehn/p/2603674.html
Copyright © 2011-2022 走看看