Tag: on screen keyboard

查找屏幕键盘的类名?

我试图使用此代码示例从C#(。NET 3.5)Winforms应用程序控制Windows XP屏幕键盘(OSK.exe): [DllImport(“User32.dll”)]public static extern Int32 SetForegroundWindow(int hWnd); [DllImport(“user32.dll”)]public static extern int FindWindow(string lpClassName, string lpWindowName); private void BringToFront(string className,string CaptionName) { SetForegroundWindow(FindWindow(className,CaptionName)); } private void Form1_Load(object sender, EventArgs e) { BringToFront(“Notepad”, “Untitled – Notepad”); } 如何确定准确的className? 我假设CaptionName是’屏幕键盘’。