分享
 
 
 

[转贴].NET中打印包含有格式的 RichTextBox 的内容

王朝c#·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

HOW TO:使用 Microsoft Visual Basic .NET 打印 RichTextBox 的内容

文章 ID

:

811401

最后更新日期

:

2004年1月12日

版本

:

3.0

有关本文的 Microsoft Visual Basic 6.0 版本,请参阅 146022.

概要

本文逐步说明如何打印 RichTextBox 控件的内容。RichTextBox 控件不提供打印其内容的方法。但是,您可以扩展 RichTextBox 类以使用 EM_FORMATRANGE 消息。然后,您可以将 RichTextBox 的内容发送到某个输出设备,例如打印机。

创建 RichTextBoxPrintCtrl 控件要扩展 RichTextBox 类并使用 EM_FORMATRANGE 来打印 RichTextBox 控件的内容,请按照下列步骤操作:

1.

使用 Microsoft Visual Basic .NET 新建一个名为 RichTextBoxPrintCtrl 的类库项目。

默认情况下,将创建 Class1.vb。

2.

将 Class1.vb 文件的名称更改为 RichTextBoxPrintCtrl.vb。

3.

在解决方案资源管理器中,右键单击“引用”,然后单击“添加引用”。

4.

在添加引用对话框中,双击“System.Drawing.dll”,然后双击“System.Windows.Forms.dll”。

5.

要添加引用,请单击“确定”。

6.

删除“RichTextBoxPrintCtrl.vb”中的现有节点。

7.

将以下代码复制到“RichTextBoxPrintCtrl.vb”中:Option Explicit On

Imports System

Imports System.Windows.Forms

Imports System.Drawing

Imports System.Runtime.InteropServices

Imports System.Drawing.Printing

Namespace RichTextBoxPrintCtrl

Public Class RichTextBoxPrintCtrl

Inherits RichTextBox

' Convert the unit that is used by the .NET framework (1/100 inch)

' and the unit that is used by Win32 API calls (twips 1/1440 inch)

Private Const AnInch As Double = 14.4

<StructLayout(LayoutKind.Sequential)> _

Private Structure RECT

Public Left As Integer

Public Top As Integer

Public Right As Integer

Public Bottom As Integer

End Structure

<StructLayout(LayoutKind.Sequential)> _

Private Structure CHARRANGE

Public cpMin As Integer ' First character of range (0 for start of doc)

Public cpMax As Integer ' Last character of range (-1 for end of doc)

End Structure

<StructLayout(LayoutKind.Sequential)> _

Private Structure FORMATRANGE

Public hdc As IntPtr ' Actual DC to draw on

Public hdcTarget As IntPtr ' Target DC for determining text formatting

Public rc As Rect ' Region of the DC to draw to (in twips)

Public rcPage As Rect ' Region of the whole DC (page size) (in twips)

Public chrg As CHARRANGE ' Range of text to draw (see above declaration)

End Structure

Private Const WM_USER As Integer = &H400

Private Const EM_FORMATRANGE As Integer = WM_USER + 57

Private Declare Function SendMessage Lib "USER32" Alias "SendMessageA" (ByVal hWnd As IntPtr, ByVal msg As Integer, ByVal wp As IntPtr, ByVal lp As IntPtr) As IntPtr

' Render the contents of the RichTextBox for printing

'Return the last character printed + 1 (printing start from this point for next page)

Public Function Print(ByVal charFrom As Integer, ByVal charTo As Integer, ByVal e As PrintPageEventArgs) As Integer

' Mark starting and ending character

Dim cRange As CHARRANGE

cRange.cpMin = charFrom

cRange.cpMax = charTo

' Calculate the area to render and print

Dim rectToPrint As RECT

rectToPrint.Top = e.MarginBounds.Top * AnInch

rectToPrint.Bottom = e.MarginBounds.Bottom * AnInch

rectToPrint.Left = e.MarginBounds.Left * AnInch

rectToPrint.Right = e.MarginBounds.Right * AnInch

' Calculate the size of the page

Dim rectPage As RECT

rectPage.Top = e.PageBounds.Top * AnInch

rectPage.Bottom = e.PageBounds.Bottom * AnInch

rectPage.Left = e.PageBounds.Left * AnInch

rectPage.Right = e.PageBounds.Right * AnInch

Dim hdc As IntPtr = e.Graphics.GetHdc()

Dim fmtRange As FORMATRANGE

fmtRange.chrg = cRange ' Indicate character from to character to

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 whole size of page

Dim res As IntPtr = IntPtr.Zero

Dim wparam As IntPtr = IntPtr.Zero

wparam = New IntPtr(1)

' Move the pointer to the FORMATRANGE structure in memory

Dim lparam As IntPtr = 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()

End Function

End Class

End Namespace

8.

要创建“RichTextBoxPrintCtrl.dll”,请在“生成”菜单上单击“生成解决方案”。

测试控件要测试该控件,请按照下列步骤操作:

1.

使用 Visual Basic .NET 新建一个 Windows 应用程序项目。

默认情况下,将创建 Form1.vb。

2.

从工具箱中,将一个按钮拖到 Form1 上。将名称更改为 btnPageSetup,然后将“文本”更改为页面设置。

3.

从工具箱中,将另一个按钮拖到 Form1 上。将名称更改为 btnPrintPreview,然后将“文本”更改为打印预览。

4.

从工具箱中,将另一个按钮拖到 Form1 上。将名称更改为 btnPrint,然后将“文本”更改为打印。

5.

在工具箱中,依次双击“PrintDialog”、“PrintPreviewDialog”和“PrintDocument”,然后双击“PageSetupDialog”将这些控件添加到 Form1 中。

6.

将“PrintDialog1”、“PrintPreviewDialog1”和“PageSetupDialog1”的 Document 属性修改为PrintDocument1。

7.

在“工具”菜单上,单击“自定义工具箱”。

8.

单击“.NET Framework 组件”,单击“浏览”,单击以选择“RichTextBoxPrintCtrl.dll”,然后单击“确定”。

9.

从工具箱中,将“RichTextBoxPrintCtrl”拖到 Form1 上。

10.

在解决方案资源管理器中,右键单击“Form1.vb”,然后单击“查看代码”。

11.

将以下代码添加到 Form1 类中: Private checkPrint As Integer

Private Sub PrintDocument1_BeginPrint(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintEventArgs) Handles PrintDocument1.BeginPrint

checkPrint = 0

End Sub

Private Sub PrintDocument1_PrintPage(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDocument1.PrintPage

' Print the content of the RichTextBox. Store the last character printed.

checkPrint = RichTextBoxPrintCtrl1.Print(checkPrint, RichTextBoxPrintCtrl1.TextLength, e)

' Look for more pages

If checkPrint < RichTextBoxPrintCtrl1.TextLength Then

e.HasMorePages = True

Else

e.HasMorePages = False

End If

End Sub

Private Sub btnPageSetup_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPageSetup.Click.Click

PageSetupDialog1.ShowDialog()

End Sub

Private Sub btnPrint_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrint.Click

If PrintDialog1.ShowDialog() = DialogResult.OK Then

PrintDocument1.Print()

End If

End Sub

Private Sub btnPrintPreview_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrintPreview.Click

PrintPreviewDialog1.ShowDialog()

End Sub

12.

要运行该应用程序,请单击“调试”菜单上的“开始”。

13.

在“RichTextBoxPrintCtrl”中键入文本。

14.

要设置页面设置,请单击“页面设置”。

15.

要预览该页,请单击“打印预览”。

16.

要打印“RichTextBoxPrintCtrl”的内容,请单击“打印”。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有