62,243
社区成员




SetStiate("正在充值");
webBrowser3.Document.All["ibEnter"].InvokeMember("Click");
int WM_CLOSE = 0x010;
string lpszParentWindow = "Windows Ineternet Explorer";
int ParenthWnd = (int)FindWindow(null, lpszParentWindow);
if (ParenthWnd != null)
{
//向系统发送关闭窗体指令
int WndPr = SendMessage(ParenthWnd, WM_CLOSE, 0, 0);
}