我正在使用以下代码添加要在80毫米收据上打印的项目字符串列表。项目字符串很长,因此我需要将字符串格式化为换行符。我怎样才能使它适合收据?
foreach (string item in listBoxItems.Items)
{
graphic.DrawString(item, new Font("Arial", 7), new SolidBrush(Color.Red), startX, startY + offset);
offset = offset + (int)fontSizeComanyInfo8.Height + 4;
}