Python tkinter之Tk窗口常用属性

1、Tk对象的常用方法

from tkinter import *

win = Tk()

win.geometry('300x300+500+100')  # 设置宽度300,高度300,距离左上角x轴距离为500,y轴距离为100
win.attributes('-alpha', '0.9')  # 设置透明度,数值是0-1之间的小数,包含0和1
win.iconbitmap('ico.ico')  # 添加图标
win.title('标题')  # 添加标题
win.config()  # 设置背景颜色
win.attributes("-fullscreen", False)  # 设置全屏
win.attributes("-topmost", False)  # 设置窗体置于最顶层
win.update()  # 刷新窗口,否则获取的宽度和高度不准
width = win.winfo_width()  # 获取窗口宽度
print(f'width:{width}')
height = win.winfo_height()  # 获取窗口高度
print(f'height:{height}')
win.overrideredirect(False)  # 去除窗口边框

width = win.winfo_screenwidth()  # 获取屏幕宽度
print(f'screen width:{width}')
height = win.winfo_screenheight()  # 获取屏幕高度
print(f'screen height:{height}')

x = win.winfo_x()  # 获取距离屏幕左上角的x轴距离,即x轴的坐标
print(f'x:{x}')
y = win.winfo_y()  # 获取距离屏幕左上角的y轴距离,即y轴的坐标
print(f'y:{y}')
win.mainloop()  # 显示窗口

posted @ 2021-06-02 17:18  南风丶轻语  阅读(1679)  评论(0编辑  收藏  举报