概要

本分步指南介绍了如何打印 RichTextBox 控件的内容。RichTextBox 控件没有提供任何打印 RichTextBox 内容的方法。您可以扩展 RichTextBox 类以使用 EM_FORMATRANGE 消息将 RichTextBox 控件的内容发送到一个输出设备(如打印机)。
返回页首

创建 RichTextBoxPrintCtrl 控件

下面的示例介绍了如何扩展 RichTextBox 类,以及如何使用 EM_FORMATRANGE 打印 RichTextBox 控件的内容。

  1. 在 Visual C# .NET 中,新建一个名为 RichTextBoxPrintCtrl 的类库项目。默认情况下创建 Class1.cs。
  2. 将 Class1.cs 的名称改为 RichTextBoxPrintCtrl.cs。
  3. 在解决方案资源管理器中,右键单击“引用”,然后单击“添加引用”。
  4. 在“添加引用”对话框中,双击“System.Drawing.dll”和“System.Windows.Forms.dll”,然后单击“确定”。
  5. 将 RichTextBoxPrintCtl.cs 中的现有代码替换为以下代码:
    using System;
    using System.Windows.Forms;
    using System.Drawing;
    using System.Runtime.InteropServices;
    using System.Drawing.Printing; namespace RichTextBoxPrintCtrl
    {
    public class RichTextBoxPrintCtrl:RichTextBox
    {
    //Convert the unit used by the .NET framework (1/100 inch)
    //and the unit used by Win32 API calls (twips 1/1440 inch)
    private const double anInch = 14.4; [StructLayout(LayoutKind.Sequential)]
    private struct RECT
    {
    public int Left;
    public int Top;
    public int Right;
    public int Bottom;
    } [StructLayout(LayoutKind.Sequential)]
    private struct CHARRANGE
    {
    public int cpMin; //First character of range (0 for start of doc)
    public int cpMax; //Last character of range (-1 for end of doc)
    } [StructLayout(LayoutKind.Sequential)]
    private struct FORMATRANGE
    {
    public IntPtr hdc; //Actual DC to draw on
    public IntPtr hdcTarget; //Target DC for determining text formatting
    public RECT rc; //Region of the DC to draw to (in twips)
    public RECT rcPage; //Region of the whole DC (page size) (in twips)
    public CHARRANGE chrg; //Range of text to draw (see earlier declaration)
    } private const int WM_USER = 0x0400;
    private const int EM_FORMATRANGE = WM_USER + 57; [DllImport("USER32.dll")]
    private static extern IntPtr SendMessage (IntPtr hWnd , int msg , IntPtr wp, IntPtr lp); // Render the contents of the RichTextBox for printing
    // Return the last character printed + 1 (printing start from this point for next page)
    public int Print( int charFrom, int charTo,PrintPageEventArgs e)
    {
    //Calculate the area to render and print
    RECT rectToPrint;
    rectToPrint.Top = (int)(e.MarginBounds.Top * anInch);
    rectToPrint.Bottom = (int)(e.MarginBounds.Bottom * anInch);
    rectToPrint.Left = (int)(e.MarginBounds.Left * anInch);
    rectToPrint.Right = (int)(e.MarginBounds.Right * anInch); //Calculate the size of the page
    RECT rectPage;
    rectPage.Top = (int)(e.PageBounds.Top * anInch);
    rectPage.Bottom = (int)(e.PageBounds.Bottom * anInch);
    rectPage.Left = (int)(e.PageBounds.Left * anInch);
    rectPage.Right = (int)(e.PageBounds.Right * anInch); IntPtr hdc = e.Graphics.GetHdc(); FORMATRANGE fmtRange;
    fmtRange.chrg.cpMax = charTo; //Indicate character from to character to
    fmtRange.chrg.cpMin = charFrom;
    fmtRange.hdc = hdc; //Use the same DC for measuring and rendering
    fmtRange.hdcTarget = hdc; //Point at printer hDC
    fmtRange.rc = rectToPrint; //Indicate the area on page to print
    fmtRange.rcPage = rectPage; //Indicate size of page IntPtr res = IntPtr.Zero; IntPtr wparam = IntPtr.Zero;
    wparam = new IntPtr(1); //Get the pointer to the FORMATRANGE structure in memory
    IntPtr lparam= IntPtr.Zero;
    lparam = Marshal.AllocCoTaskMem(Marshal.SizeOf(fmtRange));
    Marshal.StructureToPtr(fmtRange, lparam, false); //Send the rendered data for printing
    res = SendMessage(Handle, EM_FORMATRANGE, wparam, lparam); //Free the block of memory allocated
    Marshal.FreeCoTaskMem(lparam); //Release the device context handle obtained by a previous call
    e.Graphics.ReleaseHdc(hdc); //Return last + 1 character printer
    return res.ToInt32();
    } }
    }
  6. 在“生成”菜单中,单击“生成解决方案”以创建 RichTextBoxPrintCtrl.dll。

返回页首

测试控件

  1. 在 Visual C# .NET 中创建一个新的 Windows 应用程序项目。默认情况下将创建出 Form1.cs。
  2. 将一个按钮控件从工具箱拖入 Form1。将 Name 属性更改为 btnPageSetup,并将 Text 属性更改为页面设置
  3. 将另一个按钮控件从工具箱拖入 Form1。将 Name 属性更改为 btnPrintPreview,并将 Text 属性更改为打印预览
  4. 将另一个按钮控件从工具箱拖入 Form1。将 Name 属性更改为 btnPrint,并将 Text 属性更改为打印
  5. 在工具箱中,双击“PrintDialog”、“PrintPreviewDialog”、“PrintDocument”和“PageSetupDialog”以将这些控件添加到 Form1 中。
  6. PrintDialog1PrintPreviewDialog1PageSetupDialog1 控件的 Document 属性修改为 PrintDocument1
  7. 在“工具”菜单上,单击“自定义工具箱”。
  8. 在“.NET Framework 组件”选项卡上,单击“浏览”,单击以选中“RichTextBoxPrintCtrl.dll”,然后单击“确定”。
  9. RichTextBoxPrintCtrl 从工具箱拖入 Form1。
  10. 在解决方案资源管理器中,右键单击 Form1.cs,然后单击查看代码
  11. 将以下代码添加到 InitializeComponent 方法中:
    		this.printDocument1.BeginPrint += new System.Drawing.Printing.PrintEventHandler(this.printDocument1_BeginPrint);
    this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
    this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
    this.btnPrintPreview.Click += new System.EventHandler(this.btnPrintPreview_Click);
    this.btnPageSetup.Click += new System.EventHandler(this.btnPageSetup_Click);
  12. 将下面的代码添加到 Form1 类:
    		private int checkPrint;
    private void btnPageSetup_Click(object sender, System.EventArgs e)
    {
    pageSetupDialog1.ShowDialog();
    } private void btnPrintPreview_Click(object sender, System.EventArgs e)
    {
    printPreviewDialog1.ShowDialog();
    } private void btnPrint_Click(object sender, System.EventArgs e)
    {
    if (printDialog1.ShowDialog() == DialogResult.OK)
    printDocument1.Print();
    } private void printDocument1_BeginPrint(object sender, System.Drawing.Printing.PrintEventArgs e)
    {
    checkPrint = 0;
    } private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
    {
    // Print the content of RichTextBox. Store the last character printed.
    checkPrint = richTextBoxPrintCtrl1.Print(checkPrint, richTextBoxPrintCtrl1.TextLength, e); // Check for more pages
    if (checkPrint < richTextBoxPrintCtrl1.TextLength)
    e.HasMorePages = true;
    else
    e.HasMorePages = false;
    }
  13. 在“调试”菜单上,单击“启动”以运行该应用程序。Form1 将显示出来。
  14. 在 RichTextBoxPrintCtrl 中键入一些文本。
  15. 单击“页面设置”以设置页面设置。
  16. 单击“打印预览”以查看页面的打印预览。
  17. 单击“打印”以打印“RichTextBoxPrintCtrl”的内容。

C#如何打印RichTextBox控件的内容的更多相关文章

  1. HOW TO:使用 Visual C# .NET 打印 RichTextBox 控件的内容

    概要 本分步指南介绍了如何打印 RichTextBox 控件的内容.RichTextBox 控件没有提供任何打印 RichTextBox 内容的方法.您可以扩展 RichTextBox 类以使用 EM ...

  2. window.print实现打印特定控件或内容

    window.print打印指定div 首先我们可以把要打印的内容放在div中,然后用下面的代码进行打印. <html> <head> <script language= ...

  3. NET RichTextBox控件如何可以插入图像

    本文介绍.NET RichTextBox控件如何可以插入图像,控制和ActiveX对象通过使用OLE方式,如在解释,.不幸的是,它涵盖了只用一个C源代码样本,所以我需要在托管代码(C#)实施类似的解决 ...

  4. (C#)RichTextBox控件

    RichTextBox(有格式文本)控件可实现TextBox控件的所有功能. ❶在RichTextBox控件中显示滚动条 RichTextBox可设置Multiline属性来控制是否显示滚动套,tru ...

  5. RichTextBox控件-主要用于输入输出编辑文本信息

    1.在RichTextBox控件中添加超链接文字 private void btn_Add_Click(object sender, EventArgs e) { rtbox_HyperLink.Ap ...

  6. 在RichTextBox控件中添加图片和文字

    public void SetText(RichTextBox rtb) { rtb.Text = "在RichTextBox控件中添加图片和文字" + Environment.N ...

  7. RichTextBox控件日常使用集合

    1.RichTextBox控件自动滚动到底部 richTextBox1.ScrollToCaret(); //将控件的内容滚动到当前光标位置

  8. 在RichTextBox控件中显示RTF格式文件

    实现效果: 知识运用:    RichTextBox控件的LoadFile方法 //将文件内容加载到RichTextBox控件中 public void LoadFile(string path,Ri ...

  9. 在RichTextBox控件中添加超链接文本

    实现效果: 知识运用: RichTextBox控件的AppendText方法 public void AppendText{string textData} //向控件中添加文本内容 和Process ...

随机推荐

  1. jquery的val()

    jQuery 属性操作 - val() 方法 jQuery 属性操作参考手册 实例 设置输入域的值: $("button").click(function(){ $(": ...

  2. python使用hbase

    #coding:utf-8 __author__ = 'similarface' from multiprocessing import Process import happybase import ...

  3. Unix 环境高级编程

    UNIX 环境高级编程 本书描述了UNIX系统的程序设计接口--系统调用接口和标准C库提供的很多函数. 与大多数操作系统一样,Unix为程序员运行提供了大量的服务--打开文件,读文件,启动一个新程序, ...

  4. DataUml Design 介绍9 - DataUML 1.3版本功能(查询分析器功能等)

    DataUML 1.3 (下载)主要更新内容如下: 1.增加查询分析器功能: 2.增加打开历史文件记录功能: 3.修改查询对象功能: 4.增加显示对象长度功能: 5.增加配置显示表字段功能: 6.增加 ...

  5. 虚机下Ubuntu与Win7文件共享

    使用Samba服务实现虚机与本机的文件共享,简单的分为以下几个步骤,按部就班,so easy 1.安装smb sudo apt-get install samba sudo apt-get insta ...

  6. 一步一步解析H.264码流的NALU(SPS,PSS,IDR)获取宽高和帧率

    分析H.264码流的工具 CodecVisa,StreamEye以及VM Analyzer NALU是由NALU头和RBSP数据组成,而RBSP可能是SPS,PPS,Slice或SEI 而且SPS位于 ...

  7. 学习lofter 让图片适应各个分辨率的方法

    只要图片的分辨率足够大,那么可以任意的width,不用担心失真 那么就可以根据屏幕的分辨率给图片相应的宽度 大分辨率浏览 小分辨率浏览 两个分辨率的图片地址是一样的,排除了换图的可能 大分辨率下的代码 ...

  8. Servlet HTTP 状态码

    HTTP 请求和 HTTP 响应消息的格式是类似的,结构如下: 初始状态行 + 回车换行符(回车+换行) 零个或多个标题行+回车换行符 一个空白行,即回车换行符 一个可选的消息主体,比如文件.查询数据 ...

  9. 自己动手写ORM(01):解析表达式树生成Sql碎片

     在EF中,我们查询数据时可能会用拉姆达表达式 Where(Func<T,ture> func)这个方法来筛选数据,例如,我们定义一个User实体类 public class User { ...

  10. vim-addon-manager【转】

    Vim是一个非常优秀的编辑器,但是没装插件的Vim就始终只是个编辑器而已,是插件让Vim变得更加强大. 但是插件装得多了,管理就成了问题,Vim本身并没有提供插件管理功能,往往时间一长,.vim/vi ...