欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python 界面设计 tkinter

程序员文章站 2022-04-11 18:53:37
...

python 界面设计 tkinter

import tkinter as tk


#导入模块
window = tk.Tk()
#建立窗口window
window.title('M3U8下载 By: Lswzw...')
#窗口名
window.geometry('560x100')
#窗口大小
tk.Label(window, text='下载地址:', font=('Arial', 10), ).place(x=10, y=20)
#标签
dow_url = tk.Entry(window, show=None, width=66).place(x=88, y=20)
#文本框
tk.Label(window, text='文件名称:', font=('Arial', 10), ).place(x=10, y=50)
#标签
dow_url = tk.Entry(window, show=None, width=44).place(x=88, y=50)
#文本框


def dow_m3u8():
    dow_url = dow_url.get()   # 获取当前选中的文本

#按钮事件


b1 = tk.Button(window, text='开始下载', width=15, height=1,command=dow_m3u8).place(x=425, y=55)
#按钮
window.mainloop()
#主窗口循环显示