我正在使用 VirtualBox python API 并尝试以全屏模式打开 VM 窗口。我一直无法找到执行此操作的 API 命令,因此我尝试使用 win32api 向应用程序发送 F8+f 的键盘命令(F8 是我的主机键,因为没有用于 Right Control 的 SendKeys 代码),但我没有成功。我的代码如下,有什么想法吗?
import time,win32api,win32con,win32com
shell = win32com.client.Dispatch("WScript.Shell")
#The title of the application was copied from the Task Manager
shell.AppActivate("fed (Snapple) [Running] - Oracle VM VirtualBox")
win32api.Sleep(100)
shell.SendKeys("({F8}f)")