TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask YC: What should I use for front end GUI development?

2 点作者 vineet7kumar将近 17 年前
Though I have worked on compilers using C, I haven't done any GUI programming before. Currently I am working on a project that will require some nice looking front end GUI. I am looking for a tool to develop platform independent GUI. The project will also have some web interaction. What language and library will you suggest for this. I have heard about python and tknter.

2 条评论

gaius将近 17 年前
Tcl/Tk get sneered at by people who have never used it, but it is an incredibly productive environment if you need a GUI to drive a C program, especially with the new style widgets (ttk). Check out www.tkdocs.com. The downside is that Tcl isn't to everyone's taste. It has improved a lot with version 8.5 (e.g. tcl::mathop is much nicer than expr). Tcl can be made to behave a lot like LISP - you can add new control structures to the language, eval code, etc etc. See wiki.tcl.tk for more details.<p>If you are set on using Python, you could do a lot worse than wxPython. It is much more like "traditional" GUI programming (e.g. if you have done Motif you will pick it up straight away). You can also get at wx from C++ if that's your bag.
评论 #234132 未加载
biohacker42将近 17 年前
Check PyQT.<p>If you're a C hacker Objective C may be the best option, but I don't know mature <a href="http://www.gnustep.org/" rel="nofollow">http://www.gnustep.org/</a> is.