我可以在画布行(tkinter)中设置标签位置吗?

2024-03-28 10:46:46 发布

您现在位置:Python中文网/ 问答频道 /正文

enter image description here

我想把时间(00:00)花在画布线(矩形)上。 我想我应该将标签的位置设置为正确的方式,但它不起作用

from tkinter import *
import tkinter as tk
 
root = tk.Tk()
canvas = Canvas(width=600, height=180, bg='white')   
canvas.pack(expand=YES, fill=BOTH)     
root.geometry("605x182")          
root.title("display")    
#root.resizable(False, False)

status = Label(canvas, text='Status : ', fg='white', bg='#213058')
status.pack(anchor="w",padx=3, pady=3)

line = canvas.create_line(3, 0, 3, 90, fill="#213058", width=5)
line = canvas.create_line(3, 3, 600, 3, fill="#213058", width=5)
line = canvas.create_line(600, 0, 600, 90, fill="#213058", width=5)
line = canvas.create_line(2, 90, 600, 90, fill="#213058", width=5)

time = Label(canvas, text='Time : ', fg='white', bg='#213058')
time.pack(anchor="w",padx= 229,pady=61)
line = canvas.create_line(230, 90, 230, 177, fill="#213058", width=5)
line = canvas.create_line(228, 177, 603, 177, fill="#213058", width=5)
line = canvas.create_line(600, 177, 600, 90, fill="#213058", width=5)

showtime = Label(canvas, text='00:00', fg='white', bg='#213058')
showtime.pack(anchor="w",padx= 0,pady=0)

      
mainloop()

这是我的密码

我不知道怎么修理它。请帮帮我

非常感谢。


Tags: textcreatelinerootwidthfilllabelpack
1条回答
网友
1楼 · 发布于 2024-03-28 10:46:46

您可以使用create_window添加标签小部件,或者使用create_text添加文本而不创建额外的标签小部件。然后你可以把它放在任何你想放的地方

相关问题 更多 >