摘要:
private void btnPrint_Click(object sender, EventArgs e) { SendKeys.Send("%{PRTSC}"); Application.DoEvents(); this.printDocument1.Print(); } private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e) { IDataObject iData = Clipboard.GetDataObject(); Im 阅读全文
posted @ 2009-08-10 21:01 codingsilence 阅读(121) 评论(0) 推荐(0) 编辑