悟生慧

 

2011年11月9日

C#之winfrom打印图片

摘要: 第一步:拖一个printDocument控件到界面。打印按钮的代码:C# CODE:privatevoid button1_Click(object sender, EventArgs e)//执行打印 { PrintDialog MyPrintDg =new PrintDialog(); MyPrintDg.Document = printDocument1; if (MyPrintDg.ShowDialog() == DialogResult.OK) { try { printDocument1.Print(); } catch { //停止打印 printDocument1.PrintC 阅读全文

posted @ 2011-11-09 16:30 悟生慧 阅读(15283) 评论(0) 推荐(1) 编辑

导航