因为 要实现打印 wpf  listbox控件  数据特别多 要打印在 几张纸上    找了几天 都没有找到相关的例子

现在 解决了 在这里和大家分享一下

public void print(FrameworkElement ViewContainer)

{

FrameworkElement objectToPrint = ViewContainer as FrameworkElement;

PrintDialog printDialog = new PrintDialog();

printDialog.PrintTicket.PageOrientation = PageOrientation.Landscape;

if ((bool)printDialog.ShowDialog().GetValueOrDefault())

{

Mouse.OverrideCursor = Cursors.Wait;

PrintCapabilities capabilities =

printDialog.PrintQueue.GetPrintCapabilities(printDialog.PrintTicket);

double dpiScale = 300.0 / 96.0;

FixedDocument document = new FixedDocument();

try                 {

objectToPrint.Width = capabilities.PageImageableArea.ExtentWidth;

objectToPrint.UpdateLayout();

objectToPrint.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));

Size size = new Size(capabilities.PageImageableArea.ExtentWidth,

objectToPrint.DesiredSize.Height);

objectToPrint.Measure(size);

size = new Size(capabilities.PageImageableArea.ExtentWidth,

objectToPrint.DesiredSize.Height);

objectToPrint.Measure(size);

objectToPrint.Arrange(new Rect(size));

// Convert the UI control into a bitmap at 300 dpi

double dpiX = 300;

double dpiY = 300;

RenderTargetBitmap bmp = new RenderTargetBitmap(Convert.ToInt32(

capabilities.PageImageableArea.ExtentWidth * dpiScale),

Convert.ToInt32(objectToPrint.ActualHeight * dpiScale),

dpiX, dpiY, PixelFormats.Pbgra32);

bmp.Render(objectToPrint);

// Convert the RenderTargetBitmap into a bitmap we can more readily use

PngBitmapEncoder png = new PngBitmapEncoder();

png.Frames.Add(BitmapFrame.Create(bmp));

System.Drawing.Bitmap bmp2;

using (MemoryStream memoryStream = new MemoryStream())

{

png.Save(memoryStream);

bmp2 = new System.Drawing.Bitmap(memoryStream);

}

document.DocumentPaginator.PageSize =

new Size(printDialog.PrintableAreaWidth, printDialog.PrintableAreaHeight);

// break the bitmap down into pages

int pageBreak = 0;

int previousPageBreak = 0;

int pageHeight =

Convert.ToInt32(capabilities.PageImageableArea.ExtentHeight * dpiScale);

while (pageBreak < bmp2.Height - pageHeight)

{

pageBreak += pageHeight;  // Where we thing the end of the page should be

// Keep moving up a row until we find a good place to break the page

while (!IsRowGoodBreakingPoint(bmp2, pageBreak))                             pageBreak--;

PageContent pageContent = generatePageContent(bmp2, previousPageBreak,

pageBreak, document.DocumentPaginator.PageSize.Width,

document.DocumentPaginator.PageSize.Height, capabilities);                         document.Pages.Add(pageContent);                         previousPageBreak = pageBreak;                     }

// Last Page

PageContent lastPageContent = generatePageContent(bmp2, previousPageBreak,

bmp2.Height, document.DocumentPaginator.PageSize.Width,

document.DocumentPaginator.PageSize.Height, capabilities);

document.Pages.Add(lastPageContent);

}

finally

{

// Scale UI control back to the original so we don't effect what is on the screen

objectToPrint.Width = double.NaN;

objectToPrint.UpdateLayout();

objectToPrint.LayoutTransform = new ScaleTransform(1, 1);

Size size = new Size(capabilities.PageImageableArea.ExtentWidth,

capabilities.PageImageableArea.ExtentHeight);

objectToPrint.Measure(size);

objectToPrint.Arrange(new Rect(new Point(capabilities.PageImageableArea.OriginWidth,

capabilities.PageImageableArea.OriginHeight), size));

Mouse.OverrideCursor = null;

}

printDialog.PrintDocument(document.DocumentPaginator, "Print Document Name");

}         }

private PageContent generatePageContent(System.Drawing.Bitmap bmp, int top,          int bottom, double pageWidth, double PageHeight,          System.Printing.PrintCapabilities capabilities)         {

FixedPage printDocumentPage = new FixedPage();

printDocumentPage.Width = pageWidth;

printDocumentPage.Height = PageHeight;

int newImageHeight = bottom - top;

System.Drawing.Bitmap bmpPage = bmp.Clone(new System.Drawing.Rectangle(0, top,                    bmp.Width, newImageHeight), System.Drawing.Imaging.PixelFormat.Format32bppArgb);

// Create a new bitmap for the contents of this page

Image pageImage = new Image();

BitmapSource bmpSource =

System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(

bmpPage.GetHbitmap(),

IntPtr.Zero,

System.Windows.Int32Rect.Empty,

BitmapSizeOptions.FromWidthAndHeight(bmp.Width, newImageHeight));

pageImage.Source = bmpSource;

pageImage.VerticalAlignment = VerticalAlignment.Top;

// Place the bitmap on the page

printDocumentPage.Children.Add(pageImage);

PageContent pageContent = new PageContent();

((System.Windows.Markup.IAddChild)pageContent).AddChild(printDocumentPage);

FixedPage.SetLeft(pageImage, capabilities.PageImageableArea.OriginWidth);

FixedPage.SetTop(pageImage, capabilities.PageImageableArea.OriginHeight);

pageImage.Width = capabilities.PageImageableArea.ExtentWidth;

pageImage.Height = capabilities.PageImageableArea.ExtentHeight;

return pageContent;         }

private bool IsRowGoodBreakingPoint(System.Drawing.Bitmap bmp, int row)         {

double maxDeviationForEmptyLine = 1627500;

bool goodBreakingPoint = false;

if (rowPixelDeviation(bmp, row) < maxDeviationForEmptyLine)

goodBreakingPoint = true;

return goodBreakingPoint;

}         private double rowPixelDeviation(System.Drawing.Bitmap bmp, int row)

{

int count = 0;

double total = 0;

double totalVariance = 0;

double standardDeviation = 0;

System.Drawing.Imaging.BitmapData bmpData = bmp.LockBits(new System.Drawing.Rectangle(0, 0,

bmp.Width, bmp.Height), System.Drawing.Imaging.ImageLockMode.ReadOnly, bmp.PixelFormat);

int stride = bmpData.Stride;

IntPtr firstPixelInImage = bmpData.Scan0;

unsafe

{

byte* p = (byte*)(void*)firstPixelInImage;

p += stride * row;  // find starting pixel of the specified row

for (int column = 0; column < bmp.Width; column++)

{

count++;  //count the pixels

byte blue = p[0];

byte green = p[1];

byte red = p[3];

int pixelValue = System.Drawing.Color.FromArgb(0, red, green, blue).ToArgb();

total += pixelValue;

double average = total / count;

totalVariance += Math.Pow(pixelValue - average, 2);

standardDeviation = Math.Sqrt(totalVariance / count);

//go to next pixel

p += 3;

}

}

bmp.UnlockBits(bmpData);

return standardDeviation;

}

wpf打印控件 实现分页打印控件功能的更多相关文章

  1. 使用ScriptX控件实现IE浏览器分页打印功能

    之前讲过js调用ie浏览器自带打印的用法,今天讲使用插件的方式.浏览器自带打印不能控制页边距.页眉页脚等选项,尤其是如果分页打印的话,无法自动将前一页标题带到本页,所以不适用多页打印的功能.使用Scr ...

  2. lodop 控件实现web打印功能

    WEB套打可选方案不多,理想的更少,利用免费控件Lodop+JavaScript实现精确套打,算是较为经典的选择.这种方案其实比较简单,利用一个htm文件就可以实现模板设计过程,几乎是“空手套”式的开 ...

  3. c# asp.net 鼠标改变控件坐标位置,更改控件坐标,注册表保存读取,打印,查找局域网内打印机等等收集

    界面虽然被我弄的很难看,但功能还可以 里边注册表的路径自己设置一下,或者加一个创建注册表的语句,不然会报错 前台: <%@ Page Language="C#" AutoEv ...

  4. WPF MVVM 用户控件完成分页

    项目中经常会有分页查询的情况,在WPF中我们可以通过用户控件完成分页 一下为分页控件的页面代码, <UserControl x:Class="Foundation.UCtrl.Next ...

  5. 关于使用smsx.cab控件做web打印使用方法(转)

    注意:在使用之前先告诉下我的痛苦经历 在做WEB项目是我的JSP页面在jsp文件夹里,我把smsx.cab放在js文件夹里(jsp和js是用级别目录) 在本机上测试可以正确下载控件,但是部署到测试服务 ...

  6. 基于WPF系统框架设计(10)-分页控件设计

    背景 最近要求项目组成员开发一个通用的分页组件,要求是这个组件简单易用,通用性,兼容现有框架MVVM模式,可是最后给我提交的成果勉强能够用,却欠少灵活性和框架兼容性. 设计的基本思想 传入数据源,总页 ...

  7. WPF知识点全攻略05- XAML内容控件

    此处简单列举出布局控件外,其他常用的控件: Window:WPF窗口 UserControl:用户控件 Page:页 Frame:用来浏览Page页 Border:嵌套控件,提供边框和背景. Butt ...

  8. WPF基础知识、界面布局及控件Binding(转)

    WPF是和WinForm对应的,而其核心是数据驱动事件,在开发中显示的是UI界面和逻辑关系相分离的一种开放语言.UI界面是在XAML语言环境下开发人员可以进行一些自主设计的前台界面,逻辑关系还是基于c ...

  9. 036. asp.netWeb用户控件之五使用用户控件实现分页数据导航

    UserDataPager.ascx用户控件代码: <%@ Control Language="C#" AutoEventWireup="true" Co ...

随机推荐

  1. OpenCV2.4.6与vs2008配置问题

    刚刚学习Opencv,发现配置的时候蛮复杂的,特此记下以备后续. 我的opencv安装在D:\OpenCV\opencv 1.设置环境变量 首先说一下环境配置,看到很多网上说的是根据系统的位数来判断, ...

  2. [OC Foundation框架 - 9] NSMutableArray

    可变的NSArray,可以随意添加OC对象   1.创建 void arrayCreate() { NSMutableArray *array = [NSMutableArray arrayWithO ...

  3. 让asp.net web api同时支持[AcceptVerbs("GET","POST")]

    在使用第三方接口时,有时候会看到接口同时支持GET和POST,当时想想webapi有AcceptVerbs特性,没有细想便想当然肯定会支持,后来项目中需要用到,当时在没有参数传入下确实支持,直到早几天 ...

  4. 框架中web.xml中配置文件解析

    1.XSS指跨站脚本攻击 xss表示Cross Site Scripting(跨站脚本攻击),它与SQL注入攻击类似,SQL注入攻击中以SQL语句作为用户输入,从而达到查询/修改/删除数据的目的,而在 ...

  5. ecshop中index.dwt文件分析

    对于ecshop新手来说,这篇总结值得关注. 对于没有web编程基础的同学来说,ecshop模板里面有两个文件特别重要, 但是这两个文件同时也很不好理解,分别是index.dwt和style.css. ...

  6. 安卓开发21:深入理解Handler

    Handler相关说明: 主要接受子线程发送的数据, 并用此数据配合主线程更新UI. 解释:安卓的UI线程(即OnCreate函数创建的线程)是线程非安全的.也就是说,在UI线程中,使用sleep这样 ...

  7. WinForm开发中针对TreeView控件改变当前选择节点的字体与颜色

    本文转载:http://www.cnblogs.com/umplatform/archive/2012/08/29/2660240.html 在B/S开发中,对TreeView控件要改变当前选中节点的 ...

  8. SQL Server内存性能分析

    内存概念: Working Set = Private Bytes + Shared Memory Working Set:某个进程的地址空间中,存放在物理内存的那一部分 Private Bytes: ...

  9. Eclipse 开发WEB项目所遇问题 WebContent WebRoot

    原文:http://blog.sina.com.cn/s/blog_525960510100jo0j.html 最近在做Web 项目时,新建了一个WEB 项目,如webdemo,eclipse默认的b ...

  10. windows平台下php版本问题–VC6/VC9和TS/NTS

    php下载页面中提供了4个下载版本,是vc6/vc9 与 TS/NTS的组合 VC6:legacy Visual Studio 6 compiler,就是使用这个编译器编译的.        VC9: ...