Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

วิธีทำให้หน้าต่าง Tkinter กระโดดไปข้างหน้า?


ในการทำให้หน้าต่าง tkinter หรือหน้าต่างรูททำงานเหนือหน้าต่างอื่นๆ ทั้งหมด เราสามารถใช้ แอตทริบิวต์ เมธอดที่โดยทั่วไปจะใช้ค่าสองค่าที่ระบุค่า "สูงสุด" และอีกค่าหนึ่งเป็นค่าบูลีน

ตัวอย่าง

#Importing the library
from tkinter import *

#Create an instance of tkinter window or frame
win= Tk()

#Setting the geometry of window
win.geometry("600x250")

#Create a Label
Label(win, text= "Hello Everyone!",font=('Helvetica bold',
15)).pack(pady=20)

#Make the window jump above all
win.attributes('-topmost',1)

win.mainloop()

ผลลัพธ์

การเรียกใช้โค้ดด้านบนจะทำให้หน้าต่างอยู่เหนือหน้าต่างอื่นๆ ทั้งหมด

วิธีทำให้หน้าต่าง Tkinter กระโดดไปข้างหน้า?