- Tkinter GUI Application Development Cookbook
- Alejandro Rodas de Paz
- 85字
- 2021-08-27 19:44:06
How to do it...
This snippet creates a main window with a custom title and icon. It has 400px of width by 200px of height, with a separation of 10px in each axis to the upper-left corner of the screen:
import tkinter as tk class App(tk.Tk): def __init__(self): super().__init__() self.title("My Tkinter app") self.iconbitmap("python.ico") self.geometry("400x200+10+10") if __name__ == "__main__": app = App() app.mainloop()
This program assumes that you have a valid ICO file called python.ico in the same directory where the script is placed and executed.
推薦閱讀
- Embedded Linux Projects Using Yocto Project Cookbook
- 動手玩轉Scratch3.0編程:人工智能科創教育指南
- Instant Typeahead.js
- Blockly創意趣味編程
- C程序設計案例教程
- PHP+MySQL網站開發項目式教程
- C語言程序設計
- INSTANT Silverlight 5 Animation
- Web性能實戰
- Go語言編程
- Mastering Elasticsearch(Second Edition)
- Mastering Android Studio 3
- INSTANT Apache Hive Essentials How-to
- Apache Kafka 1.0 Cookbook
- GO語言編程從入門到實踐