Home > Article > Backend Development > C# Simple code example of how to set the system's default printer
C# Simple code example of how to set the system's default printer
using System.Runtime.InteropServices; [DllImport("winspool.drv")] public static extern bool SetDefaultPrinter(stringName); privatevoid button1_Click(objectsender, EventArgs e) { 聽聽聽 SetDefaultPrinter("My Printer"); }
The above is the detailed content of C# Simple code example of how to set the system's default printer. For more information, please follow other related articles on the PHP Chinese website!