C# [WinForm] WS_TABSTOP 無效的解決辦法
2021-07-14 06:14
标签:for form exit desktop arp possibly roo https target 關鍵: IsDialogMessage function C# [WinForm] WS_TABSTOP 無效的解決辦法 标签:for form exit desktop arp possibly roo https target 原文地址:https://www.cnblogs.com/shitekudasai/p/9545536.html MSG msg;
int bRet = 1;
while (bRet != 0)
{
if (PeekMessageW(&msg, (IntPtr)0, 0u, 0u, 0u) != 0)
{
if ((bRet = GetMessageW(&msg, (IntPtr)0, 0u, 0u)) != 0)
{
if (bRet == -1)
{
// handle the error and possibly exit
}
else
{
IntPtr h = GetAncestor(msg.hwnd, GA_ROOT);
if (IsDialogMessageW(h, &msg) == 0 &&
TranslateAcceleratorW(h, (IntPtr)0, &msg) == 0)
{
TranslateMessage(&msg);
DispatchMessageW(&msg);
}
}
}
}
else
{
WaitMessage();
}
}
上一篇:plink和pscp命令使用(登录linux并执行命令/linux和Windows服务器文件互拷)
下一篇:Scrapy,终端startproject,显示错误TimeoutError: [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。
文章标题:C# [WinForm] WS_TABSTOP 無效的解決辦法
文章链接:http://soscw.com/index.php/essay/104976.html