本文介绍了设计销售点应用程序的收据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好我需要协助如何为杂货设计收据

我使用下面的代码,但它只在纸上打印物品而不允许我设计正确的收据任何协助将非常感谢。



< public void =mode =hold>

Hello guys i need assistance on how to design a reciept for grocery
I have used the code below but it only prints the items on a paper without allowing me to design a proper receipt any assistance will be highly appreciated.

<public void="" mode="hold">

{
            PrintDocument pd = new PrintDocument();
            printFont = new Font("Arial", 12);
            pd.PrintPage += new PrintPageEventHandler(PrintPage);
            pd.DefaultPageSettings.Landscape = true;
            pd.Print();
        }
        private void PrintPage(object sender, PrintPageEventArgs e)
        {

            bitmap = new Bitmap(this.listView1 .Width, this.listView1 .Height);
            listView1.DrawToBitmap(bitmap, this.listView1.ClientRectangle);
            e.Graphics.DrawImage(bitmap, new Point(70, 70));
        }

推荐答案


  • 打印行项目,总数等。
  • 打印装饰底部


这篇关于设计销售点应用程序的收据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 15:46