如何从.NET平台上用C#调用Win32 API
3个回答
展开全部
引入using System.Runtime.InteropServices;
引入api函数的格式(以引入 FindWindow为例,使用和成员函数一样使用)
[DllImport("user32.dll", EntryPoint = "FindWindow")]
public static extern int FindWindow(
string lpClassName,
string lpWindowName
);
具体api函数列表 你可以找一个win32api的chm查看
类似这样
引入api函数的格式(以引入 FindWindow为例,使用和成员函数一样使用)
[DllImport("user32.dll", EntryPoint = "FindWindow")]
public static extern int FindWindow(
string lpClassName,
string lpWindowName
);
具体api函数列表 你可以找一个win32api的chm查看
类似这样
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
[System.Runtime.InteropServices.DllImport("win32.dll")]
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询