我试图弄清楚如何通过C ++ /#或Windows脚本以编程方式启动Windows 10附带的新虚拟触摸板,它应该是一个通用Windows平台应用程序。
经过一些注册表攻击后,我发现我可以利用launch behavior with registered protocols启动触控板,如下所示:
"%SystemRoot%\system32\LaunchWinApp.exe" "ms-virtualtouchpad:"
我在这把钥匙上找到了这个信息:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ms-virtualtouchpad]
@="URL:Virtual Touchpad"
"EditFlags"=dword:00200000
"URL Protocol"=""
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ms-virtualtouchpad\Shell]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ms-virtualtouchpad\Shell\Open]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ms-virtualtouchpad\Shell\Open\Command]
@=hex(2):22,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,\
00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,4c,00,\
61,00,75,00,6e,00,63,00,68,00,57,00,69,00,6e,00,41,00,70,00,70,00,2e,00,65,\
00,78,00,65,00,22,00,20,00,22,00,25,00,31,00,22,00,00,00
"DelegateExecute"="{54058896-4775-4C34-8B62-789FB2E263A4}"
其(Default)
值为REG_EXPAND_SZ
:"%SystemRoot%\system32\LaunchWinApp.exe" "%1"
DelegateExecute
与此密钥相关:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\CLSID\{54058896-4775-4C34-8B62-789FB2E263A4}]
@="VirtualTouchpadFlow Class"
[HKEY_CLASSES_ROOT\CLSID\{54058896-4775-4C34-8B62-789FB2E263A4}\InProcServer32]
@=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\
00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,74,00,77,00,\
69,00,6e,00,75,00,69,00,2e,00,70,00,63,00,73,00,68,00,65,00,6c,00,6c,00,2e,\
00,64,00,6c,00,6c,00,00,00
"ThreadingModel"="Both"
其(Default)
值为REG_EXPAND_SZ
:%SystemRoot%\system32\twinui.pcshell.dll
因此,对于我的非UWP应用程序或脚本,我已将其启用。然后问题就是切换它。因此,如果它是一个UWP应用程序,我假设我需要将其置于挂起状态,或以某种方式将其发送终止。
我可以看到LaunchWinApp
的文档记录不多,而且我没有注意到Close
/ Suspend
/ {{1}的任何类似名称}。
我很好地以另一种方式启动虚拟触控板,但据我所知,即使以编程方式启动,目前也没有Q& A。
我该怎么办?
答案 0 :(得分:1)
这是一个用于切换触摸板打开的C ++工作代码示例,对于任何感兴趣的人都是关闭的。我相信你需要一个触控式显示器来实现触控板。我一直无法让它在我的非接触式桌面上工作。
#include <Windows.h>
#include <iostream>
int main()
{
ShellExecute(0, 0, "ms-virtualtouchpad:", 0, 0, SW_HIDE);
Sleep(1500);
HWND uwp_wnd = HWND();
uwp_wnd = FindWindowEx(0, uwp_wnd, "ApplicationFrameWindow", 0);
if (uwp_wnd)
{
HWND tpad_wnd = HWND();
tpad_wnd = FindWindowEx(uwp_wnd, tpad_wnd, "Windows.UI.Core.CoreWindow", "Windows Shell Experience Host");
if (tpad_wnd != 0)
{
SendMessage(tpad_wnd, WM_CLOSE, 0, 0);
return 0;
}
}
return 1;
}
答案 1 :(得分:0)
@KayleeFrye_onDeck,抱歉迟到的回复。
最后我可以启动ms-virtualtouchpad。原因是我的设备在x64操作系统上运行,我的x86程序应该LaunchWinApp.exe
下的C:\Windows\Sysnative
而不是C:\Windows\System32
package com.pac.work;
import java.util.Arrays;
public class checkarraytoarraylist {
public static void main(String[] args)
{
int[] a={10,25,47,85};
List<Integer> al=new ArrayList<Integer>(Arrays.asList(a));
System.out.println(al);
List<Integer> a2=new LinkedList<Integer>(Arrays.asList(a));
System.out.println(a2);
}
}
。这样才行!感谢您事先的研究!