如何使列表填充多列而不是在AutoHotKey中滚动?

问题描述 投票:0回答:1

我有一个脚本,列出AutoHotKey中打开的窗口。我希望能够一次查看所有内容而不必滚动。谁能指出我正确的方向?

scripting autohotkey
1个回答
0
投票

你是如何生成列表的?你在使用ListBox吗?如果是这样,您可以将行数设置为您需要的行数。如果没有,请指定或发布您的代码。

nWindows := 5 , sWindowList := "File Explorer|Outlook|AutoHotkey Help|Firefox|Excel"
Gui , Add , ListBox , r%nWindows% vWindowList , %sWindowList%
Gui , Show

https://www.autohotkey.com/docs/commands/GuiControls.htm#ListBox

© www.soinside.com 2019 - 2024. All rights reserved.