摘要:
因项目中需要用到控制打印机的相关信息,此贴将网络寻找的资料做了些整理1.C# 如何设置系统的默认打印机usingSystem.Runtime.InteropServices;[DllImport("winspool.drv")]publicstaticexternboolSetDefaultPrinter(stringName);privatevoidbutton1_Click(objectsender, EventArgs e){SetDefaultPrinter("My Printer");}测试结果: 单机好像基本可行 阅读全文