我有这段代码,我想匹配任何 CaptionName,我真的不知道该怎么做,以及如何放置正则表达式或其他东西,因此它可以检查我想与 BringToFront 一起使用的任何 CaptionName方法..看看:
class Program
{
[DllIport("User32.dll")]
public static extern Int32 SetForegroundWindow(int hWnd);
[DllImport("user32.dll")]
public static extern int FindWindow(string lpClassName, string lpWindowName);
private static void BringToFront(string className, string CaptionName)
{
SetForegroundWindow(FindWindow(className, CaptionName));
}
static void Main(string[] args)
{
BringToFront("Notepad","#*#");
}
}