如何打印带有收据的徽标?

时间:2016-07-21 12:06:32

标签: c# winforms printing streamwriter

我正在使用Windows应用程序和C#,我的应用程序基于餐厅结算流程。当我生成帐单时,它带有徽标的打印件。 现在,它唯一的打印文本格式。

我们正在使用我们的应用程序从记事本文件中通过流编写器写入所有文本信息。

这是我的示例代码

string strTextFileName = "ESC" + "1" + ".txt";
        string strTextFilePath = Application.StartupPath + "\\" + strTextFileName;

        if (File.Exists(strTextFilePath))
            File.Delete(strTextFilePath);
        using (StreamWriter sw = new StreamWriter(strTextFilePath))
        {

            sw.WriteLine("---------------------");
            sw.WriteLine("start s for testing of the Print in t end");
        }

请有人帮助我。

0 个答案:

没有答案