silverlight 调用默认打印机
生活随笔
收集整理的這篇文章主要介紹了
silverlight 调用默认打印机
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
打印輔助類。
首先添加
using System.Windows.Printing;
命名空間
1 public class SilverPrint 2 { 3 //設置每一項之間的間距 4 int listPrintIndex = 0; 5 private List<PrintStr> listStr = null; 6 public void Print(List<PrintStr> 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.Items 21 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 PrintStr 49 { 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 允許瀏覽器外允許 增加權限。就可以不用彈出打印預覽,直接打印了。
總結
以上是生活随笔為你收集整理的silverlight 调用默认打印机的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Windows XP字体模糊
- 下一篇: 安装eclipse时遇到的问题