📄 example_5_2a.py
字号:
from Tkinter import *
class App:
def __init__(self, master):
fm = Frame(master)
Button(fm, text='Top').pack(side=TOP)
Button(fm, text='This is the Center button').pack(side=TOP)
Button(fm, text='Bottom').pack(side=TOP)
fm.pack()
root = Tk()
root.option_add('*font', ('verdana', 12, 'bold'))
root.title("Pack - Example 2a")
display = App(root)
root.mainloop()
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -