1 回答
TA贡献1790条经验 获得超9个赞
在 Windows 10 中,计算器是一个 UWP 应用,因此您需要使用不同的方法来找到它。
以下是FlaUI如何获取新计算器与旧计算器的示例。FlaUI 是在托管 UIAv2 API 和非托管 UIAv3 COM 包装器之上编写的。
protected override Application StartApplication()
{
if (OperatingSystem.IsWindows10())
{
// Use the store application on those systems
return Application.LaunchStoreApp("Microsoft.WindowsCalculator_8wekyb3d8bbwe!App");
}
if (OperatingSystem.IsWindowsServer2016())
{
// The calc.exe on this system is just a stub which launches win32calc.exe
return Application.Launch("win32calc.exe");
}
return Application.Launch("calc.exe");
}
- 1 回答
- 0 关注
- 494 浏览
添加回答
举报