91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#打印源碼的具體實現是怎樣的

發布時間:2021-11-23 23:19:02 來源:億速云 閱讀:236 作者:柒染 欄目:編程語言

本篇文章給大家分享的是有關C#打印源碼的具體實現是怎樣的,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

C#打印源碼也是打印控件的功能之一,這里介紹的C#打印源碼可以實現自動打印處理,不過需要mdi文件的支持。

打印的原理是:生成mdi文件,系統碰到mdi的時候會自動以打印的方式處理。所以,不管用什么模板,什么方式;能在PrintPage事件處理中,生成一張要打印內容的圖片就OK了!

C#打印源碼如下:

#region 打印          private void btnPrint_Click(object sender, EventArgs e)          {              //打印預覽              //PrintPreviewDialog ppd = new PrintPreviewDialog();              PrintDocument pd = new PrintDocument();              //設置邊距              Margins margin = new Margins(20, 20, 20, 20);              pd.DefaultPageSettings.Margins = margin;              ////紙張設置默認              //PaperSize pageSize = new PaperSize("First custom size", 800, 600);              //pd.DefaultPageSettings.PaperSize = pageSize;              //打印事件設置              pd.PrintPage += new PrintPageEventHandler(this.pd_PrintPage);              //ppd.Document = pd;              //ppd.ShowDialog();              try             {                  pd.Print();              }              catch (Exception ex)              {                  MessageBox.Show(ex.Message, "打印出錯", MessageBoxButtons.OK, MessageBoxIcon.Error);                  pd.PrintController.OnEndPrint(pd, new PrintEventArgs());              }          }          //打印事件處理          private void pd_PrintPage(object sender, PrintPageEventArgs e)          {              string date = lblDate.Text; //當前日期              string flowId = lblFlowId.Text; //流水號              string payDate = PayDate.Year.ToString() + "年" + PayDate.Month.ToString() + "月"; //應收年月              string adminId = lblAdminId.Text; //操作員編號              string baseExpense = lblBaseExpense.Text; //應交基本費用              string fine = lblFine.Text; //罰款數目              string upExpense = lblUpExpense.Text; //上月上余              string actualExpense = txtActualExpense.Text; //實際應交費用              string chineseExpense = DecimalToChinese.ConvertSum(actualExpense); //實際應交費用的中文大寫      //讀取圖片模板              Image temp = Image.FromFile(@"Receipts.jpg");              GetResultIntoImage(ref temp, UserId, flowId, date, baseExpense, fine, upExpense, actualExpense, chineseExpense, payDate, adminId);              int x = e.MarginBounds.X;              int y = e.MarginBounds.Y;              int width = temp.Width;              int height = temp.Height;              Rectangle destRect = new Rectangle(x, y, width, height);              e.Graphics.DrawImage(temp, destRect, 0, 0, temp.Width, temp.Height, System.Drawing.GraphicsUnit.Pixel);          }           ///          /// 將收費結果填充到圖片模板          ///          private void GetResultIntoImage(              ref Image temp,              string userId,              string flowId,              string currentDate,              string baseExpense,              string fine,              string upExpense,              string actualExpense,              string chineseExpense,              string payDate,              string adminName)          {              //讀取圖片模板              Graphics g = Graphics.FromImage(temp);               Font f = new Font("宋體", 12);              Brush b = new SolidBrush(Color.Black);                   //填充數據到圖片模板(位置要在制作圖片模板的時候度量好)              g.DrawImage(temp, 0, 0, temp.Width, temp.Height);              g.DrawString(userId, f, b, 168, 105);              g.DrawString(UserName, f, b, 166, 134);              g.DrawString(flowId, f, b, 535, 105);              g.DrawString(currentDate, f, b, 535, 134);              g.DrawString(baseExpense, f, b, 219, 202);              g.DrawString(fine, f, b, 372, 202);              g.DrawString(upExpense, f, b, 486, 202);              g.DrawString(actualExpense, f, b, 596, 202);              g.DrawString(chineseExpense, f, b, 196, 238);              g.DrawString(payDate, f, b, 176, 269);              g.DrawString(adminName, f, b, 497, 298);               g.Dispose();          }          #endregion

以上就是C#打印源碼的具體實現是怎樣的,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

渝中区| 永新县| 精河县| 昌邑市| 汕尾市| 马鞍山市| 噶尔县| 新密市| 专栏| 会昌县| 南雄市| 武安市| 鄂托克旗| 夹江县| 麻江县| 江达县| 崇明县| 菏泽市| 永昌县| 和静县| 阜平县| 内江市| 永春县| 乐昌市| 新泰市| 乌兰察布市| 客服| 徐州市| 乐东| 夏津县| 道真| 那坡县| 红安县| 嘉善县| 长顺县| 晋中市| 巴南区| 宜兰县| 洛阳市| 凭祥市| 台湾省|