python之tkinter使用-滚动条
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之tkinter使用-滚动条相关的知识,希望对你有一定的参考价值。
1 # GUI:tkinter使用 2 # 通过调节滚动条改变标签中字体大小 3 import tkinter as tk 4 5 6 def resize(ev=None): 7 ‘‘‘改变label字体大小‘‘‘ 8 label.config(font=‘Helvetica -%d bold‘ % scale.get()) 9 10 11 top = tk.Tk() # 实例化tkinter对象 12 top.geometry(‘250x150‘) # 设置窗口大小 13 top.title(‘滑动设置‘) # 设置窗口标题 14 15 # Label控件 16 label = tk.Label(top, text=‘Hello World‘, font=‘Helvetica -12 bold‘) 17 label.pack(fill=tk.Y, expand=1) 18 19 # scale滚动条,数值从10到40,水平滑动,回调resize函数 20 scale = tk.Scale(top, from_=10, to=40, orient=tk.HORIZONTAL, command=resize) 21 scale.set(25) # 设置初始值 22 scale.pack(fill=tk.X, expand=1) 23 24 # Button控件 25 quit_btn = tk.Button(top, text=‘QUIT‘, command=top.quit, 26 activeforeground=‘white‘, activebackground=‘red‘) 27 quit_btn.pack() 28 29 tk.mainloop()
截图:
以上是关于python之tkinter使用-滚动条的主要内容,如果未能解决你的问题,请参考以下文章
Python 中 Tkinter 画布上 .jpg 图像的滚动条
Python中tkinter中控件的使用(6.Listbox列表框(添加滚动条))
Python Tkinter:将滚动条附加到列表框而不是窗口