How to get the list of all printers in computer

前端 未结 6 1080
长发绾君心
长发绾君心 2020-11-29 17:58

I need to get the list of all printers that connect to computer?

How I can do it in C#, WinForms?

6条回答
  •  青春惊慌失措
    2020-11-29 18:50

    Try this:

    foreach (string printer in System.Drawing.Printing.PrinterSettings.InstalledPrinters)
    {
        MessageBox.Show(printer);
    }
    

提交回复
热议问题