使用user32.dll自动执行某些操作或任何替代方法

时间:2013-07-29 19:11:35

标签: c# automation user32

我最近尝试过这两个功能:

[DllImport("user32.dll")]
public static extern IntPtr FindWindow(string lpClassName,string lpWindowName);

[DllImport("user32.dll")]
public static extern IntPtr FindWindowEx(int hwndParent,int hwndChildAfter,String lpszClass, String lpszWindow);

..到目前为止我只收到IntPtr个,我知道(至少我认为)这个返回int是窗口的进程ID,现在我想得到窗口的控制文本和点击按钮,怎么做? 我找不到任何东西......

0 个答案:

没有答案