C#枚举系统安装的所有打印机
2024-07-21 02:20:27
供稿:网友
最近在论坛中不少网友问"如何把windows安装的所有打印机列出来",在下面的程序中我们将把系统中所安装的打印机用列表框列出来,同时为默认打印机设置缺省值。
在下面的程序中我们用到了两个主要的类,把所有的打印机列表出来用到了printersettings 类,获取系统默认打印机用到了printdocument 类,下面我们就动手实践一下吧。
先新建一个windows form的工程,然后加入一个lable和一个combox,就行啦,关键在下面啦,我们如何获得默认打印机,就得用下面的语句。
printdocument prtdoc = new printdocument();
string strdefaultprinter = prtdoc.printersettings.printername;//获取默认的打印机名
有了默认的打印机,我们再把所有的打印机列出来。
printersettings类有一个installedprinters的属性,不知是做什么的吧,查msdn如下解释:
printersettings.installedprinters 获取安装在计算机上所有打印机的名称。
在c#中如下定义:
[c#]
[serializable]
[comvisible(false)]
public static printersettings.stringcollection installedprinters
{get;}
属性值
printersettings.stringcollection,它表示安装在计算机上所有打印机的名称。
异常
异常类型 条件
win32exception 未能枚举可用的打印机
备注
可以使用已安装的打印机名称的集合向用户提供要打印到的打印机选择。
下面的示例用已安装的打印机填充 comboinstalledprinters 组合框,并且还在选择更改时使用 printername 属性设置用于打印的打印机。populateinstalledprinterscombo 例程在窗体初始化时被调用。该示例假定存在名为 printdoc 的 printdocument 变量,并且存在特定的组合框。
[c#]
//下面括号内的自己翻译添加进去的
private void populateinstalledprinterscombo()
{
// add list of installed printers found to the combo box.(将系统中所有的打机加入列表框)
// the pkinstalledprinters string will be used to provide the display string.(列表框中显示的字串由pkinstalledprinters提供)
foreach(string pkinstalledprinters in
printersettings.installedprinters)
{
comboinstalledprinters.items.add(pkinstalledprinters);
}
}
private void comboinstalledprinters_selectionchanged(object sender, system.eventargs e)
{
// set the printer to a printer in the combo box when the selection changes.(当列表框改变时设置选择的打印机)
if (comboinstalledprinters.selectedindex != -1)
{
// the combo box's text property returns the selected item's text, which is the printer name.(将选择的打印机名在列表框中显示)
printdoc.printersettings.printername= comboinstalledprinters.text;
}
}
看了msdn的说明,懂多了吧,下面是我写练习完整代码.
//程序说明:将系统中的所有打印机在列表框中列出
//程序变量: printdocument prtdoc、string strdefaultprinter
//编写人:蚕蛹([email protected])
//日期:2003-03-20
using system;
using system.drawing;
using system.drawing.printing;
using system.collections;
using system.componentmodel;
using system.windows.forms;
using system.data;
namespace printerlist
{
///
/// form1 的摘要说明。
///
public class form1 : system.windows.forms.form
{
private system.windows.forms.label label1;
private system.windows.forms.combobox printerlist;
///
/// 必需的设计器变量。
///
private system.componentmodel.container components = null;
public form1()
{
//
// windows 窗体设计器支持所必需的
//
initializecomponent();
printdocument prtdoc = new printdocument();
string strdefaultprinter = prtdoc.printersettings.printername;//获取默认的打印机名
foreach(string strprinter in printersettings.installedprinters)
//在列表框中列出所有的打印机,
{
printerlist.items.add(strprinter);
if (strprinter == strdefaultprinter)//把默认打印机设为缺省值
{
printerlist.selectedindex = printerlist.items.indexof(strprinter);
}
}
//
// todo: 在 initializecomponent 调用后添加任何构造函数代码
//
}
///
/// 清理所有正在使用的资源。
///
protected override void dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.dispose();
}
}
base.dispose( disposing );
}
#region windows form designer generated code
///
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
///
private void initializecomponent()
{
this.label1 = new system.windows.forms.label();
this.printerlist = new system.windows.forms.combobox();
this.suspendlayout();
//
// label1
//
this.label1.location = new system.drawing.point(8, 24);
this.label1.name = "label1";
this.label1.size = new system.drawing.size(72, 16);
this.label1.tabindex = 0;
this.label1.text = "选择打印机:";
//
// printerlist
//
this.printerlist.location = new system.drawing.point(88, 22);
this.printerlist.name = "printerlist";
this.printerlist.size = new system.drawing.size(192, 21);
this.printerlist.tabindex = 1;
this.printerlist.text = "当前系统未装打印机";
//
// form1
//
this.autoscalebasesize = new system.drawing.size(5, 13);
this.clientsize = new system.drawing.size(288, 61);
this.controls.addrange(new system.windows.forms.control[] {
this.printerlist,
this.label1});
this.name = "form1";
this.text = "打印机列表";
this.resumelayout(false);
}
#endregion
///
/// 应用程序的主入口点。
///
[stathread]
static void main()
{
application.run(new form1());
}
}
}
以上代码在windows xp + vc.net 下测试通过,编译后在windows98上测试通过