c# – 如果有一个图标,如何获取MessageBox的文本?
作者:互联网
我正在尝试关闭特定的MessageBox,如果它显示基于标题和文本.当MessageBox没有图标时,我有它工作.
IntPtr handle = FindWindowByCaption(IntPtr.Zero, "Caption");
if (handle == IntPtr.Zero)
return;
//Get the Text window handle
IntPtr txtHandle = FindWindowEx(handle, IntPtr.Zero, "Static", null);
int len = GetWindowTextLength(txtHandle);
//Get the text
StringBuilder sb = new StringBuilder(len + 1);
GetWindowText(txtHandle, sb, len + 1);
//close the messagebox
if (sb.ToString() == "Original message")
{
SendMessage(new HandleRef(null, handle), WM_CLOSE, IntPtr.Zero, IntPtr.Zero);
}
当MessageBox显示时没有像下面这样的图标时,上面的代码工作得很好.
MessageBox.Show("Original message", "Caption");
但是,如果它包含一个图标(来自MessageBoxIcon),如下所示,它不起作用; GetWindowTextLength返回0并且没有任何反应.
MessageBox.Show("Original message", "Caption", MessageBoxButtons.OK, MessageBoxIcon.Information);
我最好的猜测是,FindWindowEx的第3和/或第4个参数需要改变,但我不确定要通过什么.或者第二个参数可能需要更改才能跳过图标?我不太确定.
解决方法:
看来,当MessageBox有一个图标时,FindWindowEx返回第一个子节点的文本(在这种情况下是图标)因此,零长度.现在,在this answer的帮助下,我想到了迭代孩子,直到找到一个带有文本的孩子.这应该工作:
IntPtr handle = FindWindowByCaption(IntPtr.Zero, "Caption");
if (handle == IntPtr.Zero)
return;
//Get the Text window handle
IntPtr txtHandle = IntPtr.Zero;
int len;
do
{
txtHandle = FindWindowEx(handle, txtHandle, "Static", null);
len = GetWindowTextLength(txtHandle);
} while (len == 0 && txtHandle != IntPtr.Zero);
//Get the text
StringBuilder sb = new StringBuilder(len + 1);
GetWindowText(txtHandle, sb, len + 1);
//close the messagebox
if (sb.ToString() == "Original message")
{
SendMessage(new HandleRef(null, handle), WM_CLOSE, IntPtr.Zero, IntPtr.Zero);
}
显然,你可以调整它以适应你的特定情况(例如,继续迭代,直到你找到你正在寻找的实际文本)虽然我认为带有文本的孩子可能永远是第二个:
标签:c,user32,findwindowex 来源: https://codeday.me/bug/20190607/1193625.html