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

Python GUI----tkinter的学习和使用(持续更新)

程序员文章站 2022-03-02 13:28:48
...

Python中tkinter库

窗体创建流程及设置

【创建窗体】----【设置标题】----【设置窗体大小及位置】----【设置是否可以缩放】

import tkinter

def main():
    # 1创建窗体
    my_window = tkinter.Tk()
    # 2设置标题
    my_window.title("登录")
    # 3设置窗体大小及位置
    width = 500
    height = 500
    screen_width, screen_height = my_window.maxsize()
    align_str = "{}x{}+{}+{}".format(width, height, int((screen_width - width) / 2), int((screen_height - height) / 2))
    my_window.geometry(align_str)
    # 4设置窗体是否可缩放,设置为否
    my_window.resizable(width=False, height=False)

if __name__= 'main__':
	main()

未完待续