c# 程序中有时会发现类或方法上面有个中括号[]的指的是什么语法 如:[DllImport("winspool.drv")]
usingSystem;//usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem....
using System;
//using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace WindowsFormsApplication16
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
textBox1.Text = getDefaultPrinter();
}
/// <summary>
/// 得到系统默认的打印机名称
/// </summary>
/// <returns>返回默认的打印机名称</returns>
public static string getDefaultPrinter()
{
System.Drawing.Printing.PrintDocument prtDocument = new System.Drawing.Printing.PrintDocument();
return prtDocument.PrinterSettings.PrinterName;
}
/// <summary>
/// 设置默认的打印机
/// </summary>
/// <param name="Name">传入打印机的名称</param>
/// <returns></returns>
[DllImport("winspool.drv")]
public static extern bool SetDefaultPrinter(string Name);
private void button2_Click(object sender, EventArgs e)
{
SetDefaultPrinter(textBox1.Text.Trim());
}
}
} 展开
//using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace WindowsFormsApplication16
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
textBox1.Text = getDefaultPrinter();
}
/// <summary>
/// 得到系统默认的打印机名称
/// </summary>
/// <returns>返回默认的打印机名称</returns>
public static string getDefaultPrinter()
{
System.Drawing.Printing.PrintDocument prtDocument = new System.Drawing.Printing.PrintDocument();
return prtDocument.PrinterSettings.PrinterName;
}
/// <summary>
/// 设置默认的打印机
/// </summary>
/// <param name="Name">传入打印机的名称</param>
/// <returns></returns>
[DllImport("winspool.drv")]
public static extern bool SetDefaultPrinter(string Name);
private void button2_Click(object sender, EventArgs e)
{
SetDefaultPrinter(textBox1.Text.Trim());
}
}
} 展开
3个回答
展开全部
类似DllImport的称为“属性类”,但这个“属性”不同于类的“属性”,.Net中有很多类似的属性类,他们中有一部分用于向编译器提供信息,例如STAThreadAttribute(说明应用程序的 COM 线程模型是单线程单元,一般出现在Main方法前)或FlagsAttribute(用在枚举上,说明该枚举可以进行按位运算);另外一部分用于提供指定的功能,如您提到的DllImportAttribute类(说明该方法是存在于非托管动态链接库中的);还有一些是提供指定的功能,如ComVisibleAttribute(表示程序集中的托管类型对COM是可见的,这个属性类一般出现在AssemblyInfo.cs文件中;另外还有一类就是用户自定义的属性类。
引入kernel32.dll这个动态连接库。该连接库中包括很多API函数,
代码如下:
[DllImport("winspool.drv")] //引入
public static extern bool SetDefaultPrinter(string Name); //定义外部库函数
private void button2_Click(object sender, EventArgs e)
{
SetDefaultPrinter(textBox1.Text.Trim()); //调用kernel32.dll中的库函数
}
引入kernel32.dll这个动态连接库。该连接库中包括很多API函数,
代码如下:
[DllImport("winspool.drv")] //引入
public static extern bool SetDefaultPrinter(string Name); //定义外部库函数
private void button2_Click(object sender, EventArgs e)
{
SetDefaultPrinter(textBox1.Text.Trim()); //调用kernel32.dll中的库函数
}
展开全部
类或方法上面的中括号[]表示该类或该方法的特性
[DllImport("winspool.drv")]
这个表示引入程序集 下面的方法是那个程序集里面定义的
public static extern bool SetDefaultPrinter(string Name);
[DllImport("winspool.drv")]
这个表示引入程序集 下面的方法是那个程序集里面定义的
public static extern bool SetDefaultPrinter(string Name);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
就是引用外部DLL文件的,[DllImport("winspool.drv")]将原始数据发送到打印机
参考资料: http://support.microsoft.com/kb/322091
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询