码迷,mamicode.com
首页 > Windows程序 > 详细

C#设置默认打印机

时间:2017-09-04 11:01:53      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:pac   cti   local   ring   obj   手动   etl   获得   get   

开发中经常会遇到需要用到打印机的问题,那么我们现在来一个Demo修改系统默认打印机。先看运行效果吧。(主要为了展示代码和功能,界面就随便拖拉了一个,比较丑,不要介意。)

界面构建非常简单,首先新建一个Form窗体,拉一个comboBox控件和一个Button然后就可以了。

技术分享技术分享

接下来我们看下代码。

首先是加载本地打印机的类LocalPrinter

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Drawing.Printing;

namespace WindowsFormsApplication1
{
   public class LocalPrinter
    {
        private static PrintDocument fPrintDocument = new PrintDocument();
        //获取本机默认打印机名称
        public static String DefaultPrinter()
        {
            return fPrintDocument.PrinterSettings.PrinterName;
        }
        public static List<String> GetLocalPrinters()
        {
            List<String> fPrinters = new List<String>();
            fPrinters.Add(DefaultPrinter()); //默认打印机始终出现在列表的第一项
            foreach (String fPrinterName in PrinterSettings.InstalledPrinters)
            {
                if (!fPrinters.Contains(fPrinterName))
                {
                    fPrinters.Add(fPrinterName);
                }
            }
            return fPrinters;
        }
    }
}

然后是调用windows  打印机操作api的类Externs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices; //必须引入这个命名空间

namespace WindowsFormsApplication1
{
    public class Externs
    {
        [DllImport("winspool.drv")]
        public static extern bool SetDefaultPrinter(String Name); //调用win api将指定名称的打印机设置为默认打印机
    }
}

然后就是窗体的Form的代码了,其实就是一个按钮点击事件和初始化的操作

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            InitprinterComboBox(); //加载数据
        }

        /// <summary>
        /// 初始化ComboBox数据
        /// </summary>
        private void InitprinterComboBox()
        {
            List<String> list = LocalPrinter.GetLocalPrinters(); //获得系统中的打印机列表
            foreach (String s in list)
            {
                printerComboBox.Items.Add(s); //将打印机名称添加到下拉框中
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (printerComboBox.SelectedItem != null) //判断是否有选中值
            {
                if (Externs.SetDefaultPrinter(printerComboBox.SelectedItem.ToString())) //设置默认打印机
                {
                    MessageBox.Show(printerComboBox.SelectedItem.ToString() + "设置为默认打印机成功!");
                }
                else
                {
                    MessageBox.Show(printerComboBox.SelectedItem.ToString() + "设置为默认打印机失败!");
                }
            }
        }
    }
}

这样,运行就可以设置默认打印机了。

那么,如何测试是否成功呢?很简单,打开控制面板,在打开打印机的界面,然后运行程序,设置默认打印机,看看是否会改变即可。笔者测试的结果是可以得,但是如果电脑本身没有设置默认打印机,那么设置也会成功,但是那个绿色的默认钩没有显示出来。这时候可以手动设置一下默认,然后再 通过软件修改就会显示那个绿色的默认钩了。

技术分享

 

C#设置默认打印机

标签:pac   cti   local   ring   obj   手动   etl   获得   get   

原文地址:http://www.cnblogs.com/linfenghp/p/7472383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!