- Tkinter GUI Programming by Example
- David Love
- 214字
- 2021-08-27 18:49:09
Summary
With this, our Hello World application has taught us all we should need to know with regard to basic GUI functionality. We have learned how to spawn a window containing various GUI elements by utilizing Tkinter's built-in widgets. We can place these widgets into the window using special functions called geometry managers, of which we have three to choose from.
The messagebox module allows us to easily convey information to the user without having to use any widgets within our main window, and can also be used to get feedback from a user and control how our window will behave.
We've added three simple, but effective widgets to our arsenal (not including the main window): the Label, for displaying static information; the Button, which allows a user to execute functions by clicking on it; and the Entry, which gathers textual information and allows for its use by our applications.
Next on our agenda is something a little different—a game of blackjack! By writing this game, we will also cover a very common starting point among programmers interested in GUI development: having a command-line application which could be improved by becoming a graphical one. In order to do this, we will briefly step back to the world of the CLI.
- Fundamentals of Linux
- Angular UI Development with PrimeNG
- 軟件界面交互設計基礎
- 少年輕松趣編程:用Scratch創作自己的小游戲
- DevOps Automation Cookbook
- 高級C/C++編譯技術(典藏版)
- Amazon S3 Cookbook
- Hands-On Swift 5 Microservices Development
- ASP.NET程序設計教程
- 數據結構案例教程(C/C++版)
- Building Machine Learning Systems with Python(Second Edition)
- 深入剖析Java虛擬機:源碼剖析與實例詳解(基礎卷)
- Oracle數據庫編程經典300例
- Arduino電子設計實戰指南:零基礎篇
- Python預測分析與機器學習