Silverlight 打印

摘自:http://www.cnblogs.com/jiajiayuan/archive/2012/04/13/2444246.html

Silverlight中的打印只有一个类,那就是PrintDocment这个对象来实现。
下面我用两种方法来实现Silverlight的打印:
第一种:

复制代码
private void btnPrint_Click(object sender, RoutedEventArgs e){PrintDocument document = new PrintDocument();// tell the API what to printdocument.PrintPage += (s, args) =>{args.PageVisual = GPrint;};// call the Print() with a proper name which will be visible in the Print Queuedocument.Print("Silverlight Print Application Demo");}
复制代码

第二种:
实现方式也很简单,其实只需两个步骤即可完成,即绑定PrintDocument的PrintPage事件和调用Print方法。

PrintDocument document = new PrintDocument();
document.PrintPage += documentImage_PrintPage;
document.Print("Image Document");

这个就完成了一个打印,其中PrintPage事件是最为重要的,因为整个打印的工作都是在这个事件中完成的,另外该事件的参数 PrintPageEventArgs构成了整个打印过程中的属性的设置;Print方法需要传递一个参数,参数为打印的文件的名称,在调用该方法的时候 开始触发一系列的打印事件。
PrintPageEventArgs类型的属性:
PrintableArea:获取一个Size类型的值,表示打印的范围,分别表示Height和Width,如果打印的部分超出了区域,则被截取。
PageMargins:获取打印页的Margin值。
PageVisual:设置要打印的对象,可以是一个TextBlock、Image,也可以是一个复杂的元素(Grid或者Canvas)。
HasMorePages:一个bool值,标识是否多页。
一个简单的例子:

复制代码
       private void btnPrintImage_Click(object sender, RoutedEventArgs e){PrintDocument document = new PrintDocument();document.PrintPage += new EventHandler<PrintPageEventArgs>(document_PrintPage);document.Print("Print Image");}void document_PrintPage(object sender, PrintPageEventArgs e){Image imagePrint = new Image();imagePrint.Source = img.Source;imagePrint.Height = e.PrintableArea.Height;imagePrint.Width = e.PrintableArea.Width;e.PageVisual = imagePrint;e.HasMorePages = false;}
复制代码

分页打印的例子:

复制代码
 //当前打印的行的索引,用于遍历ListBox.Itemsprivate int listPrintIndex;private void btnPrintList_Click(object sender, RoutedEventArgs e){//初始值为0listPrintIndex = 0;PrintDocument document = new PrintDocument();document.PrintPage += new EventHandler<PrintPageEventArgs>(document_PrintPage);document.Print("Print List");}//设置每一项之间的间距private int extraMargin = 50;void document_PrintPage(object sender, PrintPageEventArgs e){//定义一个打印的元素Canvas printSurface = new Canvas();e.PageVisual = printSurface;//得到最顶端位置double topPosition = e.PageMargins.Top + extraMargin;//遍历当前的ListBox.Itemswhile (listPrintIndex<lstPrint.Items.Count){//实例化TextBlock用来存放ListItem的值TextBlock txt = new TextBlock();txt.FontSize = 30;//得到ListBox每一项的值txt.Text = lstPrint.Items[listPrintIndex].ToString();double measuredHeight = txt.ActualHeight;//如果打印的当前行高度不合适的话,则进行分页if (measuredHeight>(e.PrintableArea.Height- topPosition- extraMargin)){e.HasMorePages = true;return ;}//设置TextBlock在Canvas中的位置txt.SetValue(Canvas.TopProperty, topPosition);txt.SetValue(Canvas.LeftProperty, e.PageMargins.Left + extraMargin);//将TextBlock添加到打印的元素中去printSurface.Children.Add(txt);listPrintIndex++;//追加高度topPosition = topPosition + measuredHeight;}e.HasMorePages = false;}
复制代码

有时我们会发现打印的图片并不完整,这样就需要一个类:

复制代码
 public static class Extensions{public static void Print(this FrameworkElement element,string Document, HorizontalAlignment HorizontalAlignment,VerticalAlignment VerticalAlignment, Thickness PageMargin,bool PrintLandscape, bool ShrinkToFit, Action OnPrintComplete){Print(new List<FrameworkElement>() { element }, Document,HorizontalAlignment, VerticalAlignment, PageMargin,PrintLandscape, ShrinkToFit, OnPrintComplete);}public static void Print<T>(this List<T> elements,string Document, HorizontalAlignment HorizontalAlignment,VerticalAlignment VerticalAlignment, Thickness PageMargin,bool PrintLandscape, bool ShrinkToFit, Action OnPrintComplete){PrintDocument printDocument = new PrintDocument();PageMargin = PageMargin == null ? new Thickness(10) : PageMargin;Document = (string.IsNullOrEmpty(Document)) ? "Print Document" : Document;int currentItemIndex = 0;printDocument.PrintPage += (s, e) =>{if (!typeof(FrameworkElement).IsAssignableFrom(elements[currentItemIndex].GetType())){throw new Exception("Element must be an " +"object inheriting from FrameworkElement");}FrameworkElement element = elements[currentItemIndex] as FrameworkElement;if (element.Parent == null || element.ActualWidth == double.NaN ||element.ActualHeight == double.NaN){throw new Exception("Element must be rendered, " +"and must have a parent in order to print.");}TransformGroup transformGroup = new TransformGroup();//First move to middle of page...  首先移动到页面的中间transformGroup.Children.Add(new TranslateTransform()   //TranslateTransform偏移动画{X = (e.PrintableArea.Width - element.ActualWidth) / 2,Y = (e.PrintableArea.Height - element.ActualHeight) / 8});double scale = 1;if (PrintLandscape)   //如果打印空白  需要旋转{//Then, rotate around the center   然后旋转到中心transformGroup.Children.Add(new RotateTransform(){Angle = 90,CenterX = e.PrintableArea.Width / 2,CenterY = e.PrintableArea.Height / 2});if (ShrinkToFit)   //如果自适应大小{if ((element.ActualWidth + PageMargin.Left +PageMargin.Right) > e.PrintableArea.Height)  //如果宽度大于纸张的高度{//Math.Round 方法 将值舍入到最接近的整数或指定的小数位数。 scale = Math.Round(e.PrintableArea.Height /(element.ActualWidth + PageMargin.Left + PageMargin.Right), 2);}if ((element.ActualHeight + PageMargin.Top + PageMargin.Bottom) > e.PrintableArea.Width) //如果高度大于纸张的宽度{double scale2 = Math.Round(e.PrintableArea.Width /(element.ActualHeight + PageMargin.Top + PageMargin.Bottom), 2);scale = (scale2 < scale) ? scale2 : scale;}}}else if (ShrinkToFit)  //如果不打印空白并自适应大小  不需要旋转{//Scale down to fit the page + marginif ((element.ActualWidth + PageMargin.Left + PageMargin.Right) > e.PrintableArea.Width) //如果宽度大于纸张的宽度{scale = Math.Round(e.PrintableArea.Width /(element.ActualWidth + PageMargin.Left + PageMargin.Right), 2);}if ((element.ActualHeight + PageMargin.Top + PageMargin.Bottom) > e.PrintableArea.Height) //如果高度大于纸张的高度{double scale2 = Math.Round(e.PrintableArea.Height /(element.ActualHeight + PageMargin.Top + PageMargin.Bottom), 2);scale = (scale2 < scale) ? scale2 : scale;}}//Scale down to fit the page + marginif (scale != 1){transformGroup.Children.Add(new ScaleTransform()  //ScaleTransform缩放动画{ScaleX = scale,ScaleY = scale,CenterX = e.PrintableArea.Width / 2,CenterY = e.PrintableArea.Height / 2});}if (VerticalAlignment == VerticalAlignment.Top){//Now move to Topif (PrintLandscape){transformGroup.Children.Add(new TranslateTransform(){X = 0,Y = PageMargin.Top - (e.PrintableArea.Height -(element.ActualWidth * scale)) / 2});}else{transformGroup.Children.Add(new TranslateTransform(){X = 0,Y = PageMargin.Top - (e.PrintableArea.Height -(element.ActualHeight * scale)) / 2});}}else if (VerticalAlignment == VerticalAlignment.Bottom){//Now move to Bottomif (PrintLandscape){transformGroup.Children.Add(new TranslateTransform(){X = 0,Y = ((e.PrintableArea.Height -(element.ActualWidth * scale)) / 2) - PageMargin.Bottom});}else{transformGroup.Children.Add(new TranslateTransform(){X = 0,Y = ((e.PrintableArea.Height -(element.ActualHeight * scale)) / 2) - PageMargin.Bottom});}}if (HorizontalAlignment == HorizontalAlignment.Left){//Now move to Leftif (PrintLandscape){transformGroup.Children.Add(new TranslateTransform(){X = PageMargin.Left - (e.PrintableArea.Width -(element.ActualHeight * scale)) / 2,Y = 0});}else{transformGroup.Children.Add(new TranslateTransform(){X = PageMargin.Left - (e.PrintableArea.Width -(element.ActualWidth * scale)) / 2,Y = 0});}}else if (HorizontalAlignment == HorizontalAlignment.Right){//Now move to Rightif (PrintLandscape){transformGroup.Children.Add(new TranslateTransform(){X = ((e.PrintableArea.Width -(element.ActualHeight * scale)) / 2) - PageMargin.Right,Y = 0});}else{transformGroup.Children.Add(new TranslateTransform(){X = ((e.PrintableArea.Width -(element.ActualWidth * scale)) / 2) - PageMargin.Right,Y = 0});}}e.PageVisual = element;e.PageVisual.RenderTransform = transformGroup;//Increment to next item,currentItemIndex++;//If the currentItemIndex is less than the number of elements, keep printinge.HasMorePages = currentItemIndex < elements.Count;};printDocument.EndPrint += delegate(object sender, EndPrintEventArgs e){foreach (var item in elements){FrameworkElement element = item as FrameworkElement;//Reset everything...TransformGroup transformGroup = new TransformGroup();transformGroup.Children.Add(new ScaleTransform() { ScaleX = 1, ScaleY = 1 }); //缩放动画transformGroup.Children.Add(new RotateTransform() { Angle = 0 });             //旋转动画transformGroup.Children.Add(new TranslateTransform() { X = 0, Y = 0 });       //偏移动画element.RenderTransform = transformGroup;}//Callback to completeif (OnPrintComplete != null){OnPrintComplete();}};printDocument.Print(Document);}}
复制代码

调用这个类:

private void btnPrint_Click(object sender, RoutedEventArgs e){Extensions.Print(GPrint, "MyPrint",HorizontalAlignment.Center, VerticalAlignment.Top,new Thickness(10, 0, 10, 0), true, true, null);}

这样就能完整的打印了,不过打印出来的效果可能是横向的。

 

转载于:https://www.cnblogs.com/a-mumu/p/5692651.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/271308.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数据库系统的体系结构知识笔记

1、集中式数据库系统分时系统环境下的集中式数据库系统结构诞生于20世纪60年代中期。当时的硬件和操作系统决定了分时系统环境下的集中式数据库系统构成早期的数据库技术的首选结构。数据和数据管理都是集中的&#xff0c;数据库系统的所有系统&#xff0c;从形式的用户到DBMS核…

mysql2014授权设置_mysql权限管理(2014-09-15)

本文比较碎片化&#xff0c;不过以问答的形式比较容易理解。如何查看mysql的当前登录的用户&#xff1f;select user();mysql -hlocalhost -uroot 与root192.168.11.100 区别&#xff1f;mysql -hlocalhost -uroot只能在本地进行登录&#xff0c;而root192.168.11.100不能在本…

python网站后台_Python 网站后台扫描脚本

Python 网站后台扫描脚本1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 #!/usr/bin/python #codingutf-8 import sys import urllib import time url "http://123.207.123.228/" txt open(r"C:\Users\ww\Desk…

数据库系统的三级模式结构知识笔记

1、数据抽象的三个层次数据库系统利用三个层次划分来抽象来对用户屏蔽系统的复杂性、简化用户与系统的交互。1.1 物理层物理层属于最低级层次的抽象&#xff0c;描述数据在存储器上如何进行存储的。物理层会详细描述复杂的底层结构。1.2 逻辑层逻辑层属于中间层&#xff0c;用来…

Arrays.sort()排序

/*** Arrays.sort()排序* 默认升序*/Testpublic void test(){Integer[] result {1,4,7,9};Arrays.sort(result);for (int i 0;i<result.length;i)System.out.println(i);}

import package的问题

在新建class的时候除了名字还可以选择包名&#xff1a; 新建2个包名&#xff0c;然后在不同的包里写2个同名的类&#xff0c; 程序中导入另外一个包 package com.hs;import com.hy.Father; 当直接使用Father的时候提示是引用的com.hy.Father public static void main(String[] …

数据库技术基础:常见基本模型介绍笔记

1、层次模型层次模型采用树型结构表示数据与数据间的联系。层次模型中每个节点表示一个实体&#xff0c;实体之间的联系用节点之间的连线表示&#xff0c;并且除了根节点以外&#xff0c;其他节点有且仅有一个双亲节点。层次模型特点&#xff1a;记录之间的联系通过指针实现&am…

升序

/*** 升序*/Testpublic void test25() {List<Integer> array Stream.of(1, 8, 5, 3).collect(toList());// 升序排序array.sort(Integer::compareTo);System.out.println(array);}

数据库技术:数据存储和查询知识笔记

1、存储管理器存储管理器作用&#xff1a;负责数据库中数据的存查询和更新。存储管理器负责和文件系统交互&#xff0c;将不同的DML语句翻译成底层文件系统命令&#xff0c;通过这种方式原始数据就通过文件系统存储在磁盘上。存储管理器是存储底层数据和应用程序、以及向数据库…

lambda中orElse(null)使用

如果取得第一个元素&#xff0c;则用findFirst() 最后提取元素的时候&#xff0c;可以用&#xff1a;get或者orElse(null) 这里要注意的是&#xff0c;规范用法是orElse(null) 用get方法&#xff0c;如果filter中获取的是null&#xff0c;那么用get方法会抛出异常&#xff1…

数据挖掘:数据仓库相关知识笔记

1、数据仓库介绍数据仓库&#xff08;DW&#xff09;&#xff1a;可以满足管理人员的决策分析需要&#xff0c;在数据库基础上产生了满足决策分析需要的数据环境。传统数据库和数据仓库比较比较内容传统数据库数据仓库数据内容当前数据历史的、存档的、归纳的、计算的数据目标面…

python200行代码_如何用200行Python代码“换脸”

本文将介绍如何编写一个只有200行的Python脚本&#xff0c;为两张肖像照上人物的“换脸”。 这个过程可分为四步&#xff1a; 检测面部标记。 旋转、缩放和转换第二张图像&#xff0c;使之与第一张图像相适应。 调整第二张图像的色彩平衡&#xff0c;使之与第一个相匹配。 把第…

git的smart Checkout跟force checkout的区别

1:在切换分支的时候,常常会遇到下图的问题 是因为我在test分支上修改了代码&#xff0c;但是没有commit&#xff0c;切换到其他分支上就弹出了这个窗口 我们需要怎么处理呢 2:可以看到弹框底部有Force Checkout Dont checkout Smart Checkout,表示什么意思呢 Smart …

数据挖掘相关知识介绍

1、数据挖掘定义把数据库中大量数据背后隐藏的重要信息抽取出来&#xff0c;然后为公司创造很多潜在的利润&#xff0c;针对这种海量数据库中挖掘数据信息的技术称为数据挖掘&#xff08;DM&#xff09;。2、数据挖掘的分类按照数据库种类&#xff1a;关系型数据库的数据挖掘、…

c语言数字灵活多变的访问形式_学习C语言你必须知道的事儿!

是新朋友吗&#xff1f;记得先点蓝字关注我哦&#xff5e;今日课程菜单Java全栈开发 | Web前端H5大数据开发 | 大数据分析人工智能Python | 人工智能物联网有听过这样一段话&#xff1a;在编程界&#xff0c;C语言就是道家的“三”&#xff0c;A生B&#xff0c;B生C&#xff0c…

IDEA通过git怎么回滚到某个提交节点或某个版本

1:先右键点击项目&#xff0c;选择git,接着Show History 2:这里会显示有历史提交的版本记录,假设我要回滚到箭头处到提交&#xff0c;操作如下 3:右键点击&#xff0c;点击Copy Revision Number 在编辑器里粘贴&#xff0c;可以看到如下 4:右击选择项目&#xff0c;选择git -&…

关系数据库基础知识介绍

1、关系的相关名词介绍属性&#xff08;Attribute&#xff09;:描述事物的若干特征称为属性。比如学号、姓名、职位、年龄等。域&#xff08;Domain&#xff09;&#xff1a;针对属性的取值范围集合。比如性别取值为男、女、学号的长度为8位等。一般在关系数据模型中&#xff0…

android中xmlns:tools属性详解

第一部分 安卓开发中&#xff0c;在写布局代码的时候&#xff0c;ide可以看到布局的预览效果。 但是有些效果则必须在运行之后才能看见&#xff0c;比如这种情况&#xff1a;TextView在xml中没有设置任何字符&#xff0c;而是在activity中设置了text。因此为了在ide中预览效果&…

python excel库 linux_用python写一个简单的excel表格获取当时的linux系统信息

最近在学习excel表格的制作&#xff0c;顺便结合之前学习的内容&#xff0c;利用python的两个模板&#xff0c;分别是获取系统信息的psutil&#xff0c;和生成excel表格的xlsxwriter。利用这两个模板将生成一个简单的excel表格&#xff0c;获取当时的linux系统信息&#xff0c;…

mac下安装brew下载非常慢解决方法

一键解决&#xff1a;自动脚本(全部国内地址)&#xff08;在Mac os终端中复制粘贴回车下面这句话) /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"输入y 在终端环境下&#xff0c;brew --version 查看brew的版本&#xf…