c#

C# 打印输出如何连接打印机

小樊
138
2024-07-20 06:08:42
栏目: 编程语言

在C#中连接到打印机并输出内容,可以使用System.Drawing.Printing命名空间中的PrintDocument类。以下是一个简单的示例代码,演示如何连接到打印机并打印输出:

using System;
using System.Drawing;
using System.Drawing.Printing;

class Program
{
    static void Main()
    {
        PrintDocument pd = new PrintDocument();
        pd.PrintPage += new PrintPageEventHandler(PrintOutput);

        pd.Print();
    }

    static void PrintOutput(object sender, PrintPageEventArgs e)
    {
        Graphics g = e.Graphics;
        Font font = new Font("Arial", 12);

        g.DrawString("Hello, Printer!", font, Brushes.Black, 100, 100);
    }
}

这个示例会连接到默认打印机并在打印时输出"Hello, Printer!"。你可以根据自己的需求修改PrintOutput方法中的内容,以便打印所需的文本或图像等信息。

0
看了该问题的人还看了