在C#中連接到打印機(jī)并輸出內(nèi)容,可以使用System.Drawing.Printing命名空間中的PrintDocument類。以下是一個(gè)簡(jiǎn)單的示例代碼,演示如何連接到打印機(jī)并打印輸出:
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);
}
}
這個(gè)示例會(huì)連接到默認(rèn)打印機(jī)并在打印時(shí)輸出"Hello, Printer!"。你可以根據(jù)自己的需求修改PrintOutput方法中的內(nèi)容,以便打印所需的文本或圖像等信息。