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

C#连接打印机初研究

时间:2015-09-11 19:07:27      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:

最近有朋友让我帮忙做个控制打印机复印的程序。

 

上网查吧。

 

http://www.cnblogs.com/janes/archive/2011/03/15/1985143.html   先找个简单的例子压压惊. 简单。

 

技术分享
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;
using System.Drawing.Printing;      //连接打印机需要的命名空间

namespace printing
{
    public partial class FrmPrinting : Form
    {
        public FrmPrinting()
        {
            InitializeComponent();
        }

        private void FrmPrinting_Load(object sender, EventArgs e)
        {
            PrintDocument pd = new PrintDocument();
            string sDefault = pd.PrinterSettings.PrinterName;       //获取默认的打印机名称

            foreach (var vPrint in PrinterSettings.InstalledPrinters)   //获得本机打印机集合
            {
                lstPrint.Items.Add(vPrint);
                //if (vPrint == sDefault) 
                //{
                //    lstPrint.SelectedIndex = lstPrint.Items.IndexOf(vPrint);
                //}
            }
        }
    }
}
View Code

演示效果(获得本机所有打印机名字)  这个太初级了,还得继续研究。

技术分享

C#连接打印机初研究

标签:

原文地址:http://www.cnblogs.com/DB000/p/4801604.html

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