我在C#中编写了一个程序,可以启用多个全局热键,并根据按下的热键,激活Chrome,firefox,记事本,计算器等窗口。注册全局热键后,我有一个无限的时间-loop使应用程序保持活跃状态。运行程序后,突然热键停止工作。这段时间有几个小时后会发生。经过长时间测试我的每一段代码后,我发现了这个问题。问题是主线程突然停止工作。该计划仍然存在并且在记忆中。热键似乎在另一个处于活动状态的线程中注册,即使包含while循环的主线程已经死亡,也会使程序保持运行。
然后我使用了一个背景工作者并在backgroundworker中移动了while循环。它又发生了,这意味着当热键仍然注册时,后台工作人员突然停止了。这不是我第一次使用backgroudworker,我从来没有遇到过这样的事情,背景工作者自己退出。
发生这种情况时,这样的消息会出现在Visual Studio的输出窗口中:
The thread 0x1b24 has exited with code 0 (0x0)
线程是否有任何时间限制,以便在此之后退出? 您对此有何发现以及如何解决这个问题有什么建议吗?
对于全局热键,我使用此处列出的代码:
http://stackoverflow.com/a/3654821/3179989
这是我的其余代码:
public static void HotKeyPressed(object sender, HotKeyEventArgs e)
{
string PressedHotkey = e.Modifiers.ToString() + " " + e.Key.ToString();
switch (PressedHotkey)
{
case "Alt D1":
mActivateWindow(mEnumApplications.Chrome);
break;
case "Alt D3":
mActivateWindow(mEnumApplications.CintaNotes);
break;
default:
break;
}
}
private void button1_Click(object sender, EventArgs e)
{
bgWkrHotkey.WorkerSupportsCancellation = true;
bgWkrHotkey.WorkerReportsProgress = true;
bgWkrHotkey.RunWorkerAsync();
}
private void bgWkrHotkey_DoWork(object sender, DoWorkEventArgs e)
{
mHotKeyManager.RegisterHotKey(Keys.Oemtilde, KeyModifiers.Alt);
mHotKeyManager.RegisterHotKey(Keys.D1, KeyModifiers.Alt);
mHotKeyManager.RegisterHotKey(Keys.D3, KeyModifiers.Alt);
mHotKeyManager.HotKeyPressed += new EventHandler<HotKeyEventArgs>(HotKeyPressed);
while (true)
{
Thread.Sleep(50);
}
}
//@@@@@@@@@@@@@@@@@@@@ DLL IMPORTS @@@@@@@@@@@@@@@@@@@@
#region DLL IMPORTS
[DllImport("User32.dll")]
private static extern IntPtr SetForegroundWindow(IntPtr hWnd);
[DllImport("user32.dll")]
static extern IntPtr GetForegroundWindow();
delegate bool EnumWindowsProc(IntPtr hWnd, int lParam);
[DllImport("USER32.DLL")]
static extern bool EnumWindows(EnumWindowsProc enumFunc, int lParam);
[DllImport("USER32.DLL")]
static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);
[DllImport("USER32.DLL")]
static extern int GetWindowTextLength(IntPtr hWnd);
[DllImport("USER32.DLL")]
static extern IntPtr GetShellWindow();
#endregion DLL IMPORTS
public static IDictionary<IntPtr, string> mGetOpenWindows()
{
IntPtr ipShellWindow = GetShellWindow();
Dictionary<IntPtr, string> ipWindows = new Dictionary<IntPtr, string>();
EnumWindows(delegate(IntPtr hWnd, int lParam)
{
if (hWnd == ipShellWindow) return true;
//if (!IsWindowVisible(hWnd)) return true;
int lLength = GetWindowTextLength(hWnd);
if (lLength == 0) return true;
StringBuilder lBuilder = new StringBuilder(lLength);
GetWindowText(hWnd, lBuilder, lLength + 1);
ipWindows[hWnd] = lBuilder.ToString();
return true;
}, 0);
return ipWindows;
}
public static string mGetActiveWindowTitle()
{
const int nChars = 256;
StringBuilder Buff = new StringBuilder(nChars);
IntPtr handle = GetForegroundWindow();
if (GetWindowText(handle, Buff, nChars) > 0)
{
return Buff.ToString();
}
return "";
}
public static bool mActivateWindow(IntPtr ipHandle, string strWindowTitle)
{
StringBuilder Buff = new StringBuilder(256);
SetForegroundWindow(ipHandle);
Stopwatch swTimeout = new Stopwatch();
swTimeout.Start();
while (swTimeout.Elapsed < TimeSpan.FromSeconds(2))
{
ipHandle = GetForegroundWindow();
if ((GetWindowText(ipHandle, Buff, 256) > 0) && (Buff.ToString().ToLower().Contains(strWindowTitle.ToLower())))
return true;
else
{
SetForegroundWindow(ipHandle);
Thread.Sleep(50);
}
}
swTimeout.Stop();
return false;
}
public static bool mActivateWindow(mEnumApplications enumApp)
{
string strWindowTitle = "";
switch (enumApp)
{
case mEnumApplications.Chrome:
strWindowTitle = "Google Chrome";
break;
case mEnumApplications.CintaNotes:
strWindowTitle = "CintaNotes";
break;
default:
break;
}
IntPtr ipHandle = IntPtr.Zero;
string strExactTitle = "";
StringBuilder Buff = new StringBuilder(256);
foreach (KeyValuePair<IntPtr, string> ipWindow in mGetOpenWindows())
{
ipHandle = ipWindow.Key;
strExactTitle = ipWindow.Value;
if (strExactTitle.ToLower().Contains(strWindowTitle.ToLower()))
if (mActivateWindow(ipHandle, strWindowTitle))
return true;
}
return false;
}
public enum mEnumApplications
{
Null,
Chrome,
CintaNotes,
};
我感谢任何帮助。 感谢
答案 0 :(得分:1)
查看代码时,错误可能与您调用GetWindowTextLength
的方式无关。你有:
int lLength = GetWindowTextLength(hWnd);
if (lLength == 0) return true;
因此,如果GetWindowTextLength
有错误,您的函数就会返回。
但是,您如何分配StringBuilder
时出错。如果您查看GetWindowTextLength页面上的评论,您会看到返回的值不包含空终止符。因此,当您分配StringBuilder
时,您将获得一个太小的字符。你的代码应该是:
StringBuilder lBuilder = new StringBuilder(lLength+1); // <-- changed to lLength+1
GetWindowText(hWnd, lBuilder, lLength + 1);
如果您没有做出更改,那么调用GetWindowText
可能会覆盖您的缓冲区,这会导致崩溃。
一个潜在的问题是你的托管原型适用于32位,但不适用于64位。例如,您有:
delegate bool EnumWindowsProc(IntPtr hWnd, int lParam);
32位是可以的,因为lParam
是32位。但在64位中,lParam
是64位。那个原型应该是:
delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam);
与您的EnumWindows
原型相似。它应该是:
[DllImport("USER32.DLL")]
static extern bool EnumWindows(EnumWindowsProc enumFunc, IntPtr lParam);
当您调用它时,请为参数指定IntPtr.Zero
,而不是0
。
很奇怪你无法捕获错误。如果您已修复我上面指出的内容并且您仍然收到错误,我建议您查找错误的地方。
特别是,绝对没有理由需要为热键设置单独的线程。您应该能够在主程序中定义键,并且只要主程序正在运行,热键就可以工作。添加一个帖子只会让问题混乱。
除此之外,在您确切追踪导致问题的原因之前,我可以提供更多帮助。您需要检查来自非托管函数调用的每个返回值。您还应该考虑添加一些日志记录,并记录每个操作。这样您就可以更轻松地确定错误发生的位置。