我正在使用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");
}
请有人帮助我。