我是使用 Tkinter 进行 GUI 编程的初学者,所以谁能告诉我一些有用的示例代码,其中包含一些有用的代码。
10 回答
I used Manning's book on Tkinter, as someone else mentioned. The tutorials are very thorough, and you quickly get into the habit of thinking like a GUI coder. The New Mexico Tech worksheet is useful as a reference, but a bit too clumsy for a first resource.
我发现Tkinter 中的 Thinking非常有助于我理解 GUI 编程的概念(特别是,将小部件打包到其他小部件中,以及将回调绑定到事件)。
Mark Lutz 的巨著Programming Python详细介绍了 Tkinter。The Introduction to Tkinter (effbot.org) 和Tkinter reference: a GUI for Python (John Shipman, New Mexico Tech) 很好地总结了主要特性。我读过 Tk/Tcl 手册是一个很好的参考,但可能会在以后使用。
这是我使用的:Pythonware——TKinter 简介。
不过,我很快切换到PyQT :)
这里有几个关于构建 python GUI 的视频系列让我开始
这是一个网站,几乎教会了我在 tkinter 中所知道的一切:
http://www.tutorialspoint.com/python/python_gui_programming.htm
我刚刚遇到http://www.shido.info/py/python6_e.html,它看起来很方便
如果你从视频中学习得最好,查理,我推荐http://showmedo.com/videotutorials/video?name=pythonShawnTkinter1&fromSeriesID=58;如果来自书籍,http://www.manning.com/grayson/。对于免费的在线教程,我赞同bedwyr 的建议——我特别赞同他的(隐含的;-)建议,改为使用PyQt。(对 pyqt 教程的网络搜索显示了许多指针)。
你有空闲的来源。这显示了有用的 tkinter 代码。