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文档,万能打印还远吗?


  • 相关阅读:
    DIV+CSS中的滤镜和模糊
    初识DIV+CSS
    HTML核心标签之表格标签(二)
    HTML核心标签之表格标签(一)
    关于HTML的两个实例
    CSS的四种引入方式
    HTML中的表单
    HTML基础知识概括
    python3操作socketserver
    数据库MySQL的基本操作
  • 原文地址:https://www.cnblogs.com/jehnjehn/p/2603674.html
Copyright © 2011-2022 走看看