博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
silverlight 调用默认打印机
阅读量:5115 次
发布时间:2019-06-13

本文共 2438 字,大约阅读时间需要 8 分钟。

打印辅助类。

首先添加

using System.Windows.Printing;

命名空间

1 public class SilverPrint 2     { 3         //设置每一项之间的间距 4         int listPrintIndex = 0; 5         private List
listStr = null; 6 public void Print(List
strs) 7 { 8 listStr = strs; 9 PrintDocument printDoc = new PrintDocument();10 printDoc.PrintPage += OnPrintPage;11 PrinterFallbackSettings settings = new PrinterFallbackSettings();12 settings.ForceVector = true;13 printDoc.Print("dd", settings, true);//dd是文档的名字14 }15 public void OnPrintPage(object sender, PrintPageEventArgs e)16 {17 Canvas printSurface = new Canvas();18 //得到最顶端位置19 double topPosition = e.PageMargins.Top;20 //遍历当前的ListBox.Items21 while (listPrintIndex < listStr.Count)22 {23 //实例化TextBlock用来存放每一行的值24 TextBlock txt = new TextBlock();25 txt.FontSize = listStr[listPrintIndex].FontSize;26 txt.Text = listStr[listPrintIndex].Content;27 double measuredHeight = txt.ActualHeight;28 //如果打印的当前行高度不合适的话,则进行分页29 if (measuredHeight > (e.PrintableArea.Height - topPosition))30 {31 e.HasMorePages = true;32 topPosition = e.PageMargins.Top;33 break;34 }35 //设置TextBlock在Canvas中的位置36 txt.SetValue(Canvas.TopProperty, topPosition);37 txt.SetValue(Canvas.LeftProperty, e.PageMargins.Left);38 //将TextBlock添加到打印的元素中去39 printSurface.Children.Add(txt);40 listPrintIndex++;41 //追加高度42 topPosition = topPosition + measuredHeight;43 }44 e.PageVisual = printSurface;45 }46 }47 //打印内容类48 public class PrintStr49 {50 public string Content { set; get; }51 public int FontSize { set; get; }52 public PrintStr(string str,int size=10)53 {54 this.Content = str;55 this.FontSize = size;56 }57 }

打印直接调用

new SilverPrint().Print(printStrs);

如果是silverlight5.0之前会弹出打印预览。。。如果是silverlight5.0 允许浏览器外允许 增加权限。就可以不用弹出打印预览,直接打印了

转载于:https://www.cnblogs.com/Bonker/archive/2012/11/06/2756762.html

你可能感兴趣的文章
gdb中信号的处理[转]
查看>>
LeetCode【709. 转换成小写字母】
查看>>
如何在Access2007中使用日期类型查询数据
查看>>
Jzoj4757 树上摩托
查看>>
CF992E Nastya and King-Shamans(线段树二分+思维)
查看>>
第一个Java Web程序
查看>>
树状数组_一维
查看>>
如果没有按照正常的先装iis后装.net的顺序,可以使用此命令重新注册一下:
查看>>
linux install ftp server
查看>>
嵌入式软件设计第8次实验报告
查看>>
算法和数据结构(三)
查看>>
Ubuntu下的eclipse安装subclipse遇到没有javahl的问题...(2天解决了)
查看>>
alter database databasename set single_user with rollback IMMEDIATE 不成功问题
查看>>
Repeater + Resources 列表 [原创][分享]
查看>>
WCF揭秘——使用AJAX+WCF服务进行页面开发
查看>>
【题解】青蛙的约会
查看>>
IO流
查看>>
mybatis调用存储过程,获取返回的游标
查看>>
设计模式之装饰模式(结构型)
查看>>
面向对象的设计原则
查看>>