在C#中調用windows API函數
對於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("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);