- Tkinter GUI Application Development Blueprints(Second Edition)
- Bhaskar Chaudhary
- 170字
- 2021-06-24 18:35:03
Some important widget features
Note the following few important features that are common to all widgets:
- All widgets are actually objects derived from their respective widget classes. So, a statement such as button = Button(its_parent) actually creates a button instance from the Button class.
- Each widget has a set of options that decides its behavior and appearance. This includes attributes such as text labels, colors, and font size. For example, the Button widget has attributes to manage its label, control its size, change its foreground and background colors, change the size of the border, and more.
- To set these attributes, you can set the values directly at the time of creating the widget, as demonstrated in the preceding example. Alternatively, you can later set or change the options of the widget by using the .config() or .configure() method. Note that the .config() or .configure() methods are interchangeable and provide the same functionality. In fact, the .config() method is simply an alias of the .configure() method.
推薦閱讀
- 案例式C語言程序設計
- Python:Master the Art of Design Patterns
- Oracle從入門到精通(第5版)
- Visual C#通用范例開發金典
- WordPress 4.0 Site Blueprints(Second Edition)
- OpenCV 4計算機視覺項目實戰(原書第2版)
- NoSQL數據庫原理
- Learning jQuery(Fourth Edition)
- Julia 1.0 Programming Complete Reference Guide
- Building Serverless Web Applications
- Machine Learning for Developers
- Functional Python Programming
- Elasticsearch Blueprints
- Java從入門到精通(視頻實戰版)
- Building UIs with Wijmo