当前位置:   article > 正文

tkinter实现进度条_tkinter 进度条

tkinter 进度条

在这里插入图片描述
在这里插入图片描述

import os
import  tkinter
from time import sleep
from tkinter import ttk
root=tkinter.Tk()
#设置主窗口标题
root.title('进度条')
#设置主窗口的高宽
root['height']=200
root['width']=400
def Pro_Bar(root):
    #标签
    label=tkinter.Label(root,text='加密进度:',font=('黑体', 12))
    label.place(x=10,y=60)
    #进度条
    progressbar=ttk.Progressbar(root)
    progressbar.place(x=80,y=60)
    #设置进度条最大值为100
    progressbar['maximum']=100
    #设置进度条长度
    progressbar['length']=280
    def Value_Bar():
        for i in range(100):
            progressbar['value']=i+1
            sleep(0.1)
            root.update()
    #控制进度条启动按钮
    btn=tkinter.Button(root,text='启动',font=('黑体', 14),cursor='hand2',command=Value_Bar)
    btn.place(x=180,y=130)

if __name__=='__main__':
    Pro_Bar(root)
    root.mainloop()

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/761202
推荐阅读
相关标签
  

闽ICP备14008679号