人们会推荐哪种语言作为简单的 GUI,可以用作在 Cygwin 上运行的脚本的输入?
我需要一个简单的窗口,其中包含三个输入框和三个标签(登录名、密码和服务器节点)以及一个用于执行脚本的按钮。 我不想要任何需要在 Windows 上安装的第三方程序。 如果能安装在 Cygwin 上那就太好了。
I need a simple window with three input boxes and three labels (login name, password, and server node) and a button to execute the script. I do not want any third party programs that need to be installed on Windows. If it can be installed on Cygwin that would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
很多人曾经使用 TCL/TK 来做这种事情(在 cygwin 中)。
如果它仅适用于 Windows,那么任何使用 Winforms 的 .NET 语言都将很容易使用(不需要分发 .NET,除非您有较旧的机器)。
A lot of people used to use TCL/TK for this kind of thing (in cygwin).
If it's just for Windows, then any .NET language using Winforms would be simple to use (won't need to distribute .NET unless you have older boxes).
您可能想看看 Tcl/Tk 以及 starkits 和 starpacks 的概念。 使用后者,您可以创建单文件 Windows 可执行文件,这样您的最终用户就不必安装除此程序之外的任何内容。
通过使用 tk 8.5,您还将获得本机 Windows 小部件的好处,因此 GUI 看起来非常专业。
代码看起来像这样:
You might want to look at Tcl/Tk and the notion of starkits and starpacks. With the latter you can create a single-file windows executable so your end users wouldn't have to install anything other than this program.
By using tk 8.5 you'll also get the benefit of native windows widgets so the GUI can look very professional.
The code would look something like this: