Python3 tkinter基础 Scale orient 横竖 resolution单步步长 length 长度 tickinterval 指示刻度
2021-05-23 10:29
标签:widget imp port loop htm lib source 2.4 org ? ? ? ? ? ? Python具有开源、跨平台、解释型和交互式等特性,值得学习。 Python3 tkinter基础 Scale orient 横竖 resolution单步步长 length 长度 tickinterval 指示刻度 标签:widget imp port loop htm lib source 2.4 org 原文地址:https://www.cnblogs.com/xingchuxin/p/9735709.html
code
"""
@Author : 行初心
@Date : 18-10-1
@Blog : www.cnblogs.com/xingchuxin
@GitHub : github.com/GratefulHeartCoder
"""
from tkinter import *
def main():
root = Tk()
s_h = Scale(root,
from_=0, to=42,
resolution=5) # 默认是竖着的
s_h.pack()
# 默认的resoluton是1
s_v = Scale(root,
from_=0, to=200,
orient=HORIZONTAL,
tickinterval=10,
length=600)
s_v.pack()
# 获取Scale控件的选值只需要 s_h.get()即可.
mainloop()
if __name__ == ‘__main__‘:
main()
result
reference
resource
Python的设计哲学:优雅,明确,简单。提倡用一种方法,最好是只有一种方法来做一件事。
GUI可以选择PyQt5、PySide2、wxPython、PyGObject、wxWidgets等进行创作。
代码的书写要遵守规范,这样有助于沟通和理解。
每种语言都有独特的思想,初学者需要转变思维、踏实践行、坚持积累。
文章标题:Python3 tkinter基础 Scale orient 横竖 resolution单步步长 length 长度 tickinterval 指示刻度
文章链接:http://soscw.com/index.php/essay/88190.html