彩票走势图

在C#中调用windows API函数

转帖|其它|编辑:郝浩|2010-10-19 15:42:42.000|阅读 837 次

概述:对于windows 系统API函数的调用在程序设计中有时是必不可少的,各种编程语言都规范了调用的方法和接口,本文将介绍在C#语言中的调用方法,希望对大家有帮助。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

  对于windows 系统API函数的调用在程序设计中有时是必不可少的,各种编程语言都规范了调用的方法和接口,在C#语言中的调用方法如下(以下编程环境为Visual Studio .NET):

  1、 在工程项目中添加一个类新项,打开这个类文件,在文件头部加入对以下命名空间的引用:

  using System.Runtime.InteropServices;

  在类定义主体中,以静态调用的方式加入对API的引用,本文以下的API调用为例:

  /// <summary>

  /// 打开和关闭CD托盘

  /// </summary>

  [DllImport("winmm.dll" , EntryPoint="mciSendString", CharSet=CharSet.Auto)]

  public static extern int mciSendString (string lpstrCommand,string lpstrReturnstring ,int uReturnLength,int hwndCallback);

  /// <summary>

  /// 显示和隐藏鼠标指针.

  /// </summary>

  [DllImport("user32.dll", EntryPoint="ShowCursor", CharSet=CharSet.Auto)]

  public static extern int ShowCursor(int bShow);

  /// <summary>

  /// 清空回收站.

  /// </summary>

  [DllImport("shell32.dll", EntryPoint="SHEmptyRecycleBin", CharSet=CharSet.Auto)]

  public static extern long SHEmptyRecycleBin(IntPtr hwnd, string pszRootPath, long dwFlags);

  /// <summary>

  /// 打开浏览器

  /// </summary>

  [DllImport(&quot;shell32.dll", EntryPoint="ShellExecute", CharSet=CharSet.Auto)]

  public static extern int ShellExecute(IntPtr hwnd,string lpOperation,string lpFile,string lpParameters,string lpDirectory,int nShowCmd);

  /// <summary>

/// 最大化窗口,最小化窗口,正常大小窗口;

  /// </summary>

  [DllImport("user32.dll", EntryPoint="ShowWindow", CharSet=CharSet.Auto)]

  public static extern int ShowWindow(IntPtr hwnd,int nCmdShow);

  2、 有了上面的文件后,就可以在自己的窗体对象的事件处理中调用以上的API,方法如下:

  以下strReturn是string类型的公有变量,ApiCalls指代第一步创建的类名。

  打开CD托盘:

  long lngReturn = ApiCalls.mciSendString("set CDAudio door open", strReturn, 127, 0);

  关闭CD托盘:

  long lngReturn = ApiCalls.mciSendString("set CDAudio door closed", strReturn, 127, 0);

  在应用程序窗体中显示鼠标指针:

  ApiCalls.ShowCursor(1);

  在应用程序窗体中隐藏鼠标指针:

  ApiCalls.ShowCursor(0);

  清空回收站:

  ApiCalls.SHEmptyRecycleBin(Form.ActiveForm.Handle,"",0x00000000);

  打开浏览器窗口,textBox1.Text中表示要访问的URL地址:

  Long lngReturn= ApiCalls.ShellExecute(Form.ActiveForm.Handle,"Open",textBox1.Text,"","",1);

  最大化窗口:

  ApiCalls.ShowWindow(Form.ActiveForm.Handle,3);

  最小化窗口:

  ApiCalls.ShowWindow(Form.ActiveForm.Handle,2);

  恢复正常大小窗口:

  ApiCalls.ShowWindow(Form.ActiveForm.Handle,1);


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:网络转载

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP