我正在 WPF 中创建一个销售点系统。我想在订单完成期间打印发票。数据将从 Invoice: txtinvoices
、txtQty
、的 TextBox 提供txtTotalPrice
,txtAmountPaid
并且txtDate
是我想在发票上打印的一些文本框。对于需要在发票上打印的每个订单,还有一个条形码图像。
我可以使用流文档打印所有内容。但我无法打印此条形码图像。
//InvoiceID Generate
txtInvoiceID.Text = DateTime.Now.ToString("sMMHHmyyyydd" + userId);
//Barcode Generation
BarcodeEncoder enc = new BarcodeEncoder();
WriteableBitmap image = enc.Encode(BarcodeFormat.Code39, txtInvoiceID.Text);
barCodeImage.Source = image;
谁能帮我在 WPF 中打印?