框架内的python tkinter框架

标签 python tkinter

我是 Python 和 Tkinter 的新手。
我已经创建了我的界面,但 .grid 似乎没有按照我的要求执行。
LANframe 不是在中心框架中看起来整洁,而是 float 在中心而不是靠近测验。
此外,统计数据不想填充 Factframe 中剩余的青色空间,因此看起来很奇怪。
我该如何整理它?

The main outlines work fine but when I Try to put 3 additional frames into those 3 main frames, they either overlap each other or they are in random places like show in the photo

 login= Tk()
    screen_width = login.winfo_screenwidth()
    screen_height = login.winfo_screenheight()
    screen_height=str(screen_height)
    screen_width=str(screen_width)
    screen = screen_width+"x"+screen_height
    login.geometry(screen)
    login.title("Logged in as %s"%name)
    login.iconbitmap('icons/mainicon.ico')
    global min_w, max_w, cur_width, expanded
    min_w = 150 # Minimum width of the frame
    max_w = 300 # Maximum width of the frame
    cur_width = min_w # Increasing width of the frame
    expanded = False # Check if it is completely exanded
    # Define the icons to be shown
    global exits, settings, feed, profile
    exits = PhotoImage(file='icons/exits.png') # Make sure the image size is comparable to the minimum frame width
    settings = PhotoImage(file='icons/settings.png')
    feed = PhotoImage(file='icons/feed.png')
    profile = PhotoImage(file='icons/profile.png')
    login.update() # For the width to get updated
    global width1
    width1 = (int(screen_width)-200)
    global frame
    login.grid_rowconfigure(1, weight=1)
    login.grid_columnconfigure(0, weight=1)
    frame = Frame(login,bg=barcolour,width=120,height=login.winfo_height())
    frame.grid(row=0,column=0,sticky="nsw")
    global frame1
    frame1 = Frame(login,bg="blue",width=width1,height=login.winfo_height())
    frame1.grid(row=0,column=5, sticky = "e")
    frame1.grid_rowconfigure(0, weight=1)
    frame1.grid_columnconfigure(1, weight=1)
    width2 = (width1/3)
    global friendframe
    friendframe = Frame(frame1,bg="blue",width=width2,height=login.winfo_height())
    friendframe.grid(row=0,column=1,sticky="e")
    centreframe = Frame(frame1,bg="red",width=width2,height=login.winfo_height())
    centreframe.grid(row=0,column=2,sticky="nsew")
    centreframe.grid_rowconfigure(1, weight=1)
    centreframe.grid_columnconfigure(0, weight=1)
    factframe= Frame(frame1,bg="cyan",width=width2,height=login.winfo_height())
    factframe.grid(row=0,column=3,sticky="ns")
    timeheight=round(int(login.winfo_height())/5)
    timeframe = Frame(centreframe)
    timeframe.grid(row=0,sticky="n", padx=3,pady=3,columnspan=3)
    global clocklabel
    clocklabel =  Label(timeframe,bg =backgrounde,font="Ariel 40")
    clocklabel.grid(row=1,sticky="nesw")
    display_time()
    quizheight= round(int(login.winfo_height())/4)
    quizgoto= partial(gotoquizinterface)
    quizicons = PhotoImage(file='icons/quizicon.png')
    quizbutton = Button(centreframe,bg="green",image=quizicons,text="  \n  Quizes",compound="left",font="Ariel 40",command=quizgoto)
    quizbutton.grid(row=1,sticky="new",padx=3,pady=3,columnspan=3)
    LanFrame= Frame(centreframe,height=quizheight)
    LanFrame.grid(row=1,padx=3,pady=3,)
    Langameplayicon= PhotoImage(file='icons/LANgameplay.png')
    LANLobby = partial(LANGameplay, name)
    recentachieve = "Under construction"
    LANButton = Button(LanFrame,image =Langameplayicon, bg="yellow", text="   \n LAN Gameplay \n Under Construction",compound="left",font="Ariel 30",command=LANLobby)
    LANButton.grid(sticky="new")
    Achievementsicon=PhotoImage(file='icons/Awards.png')
    Achievements = partial(achievementsgained, name)
    AchievementsButton = Button(factframe,image =Achievementsicon, bg="purple", text=("   \n Achievements \n Recent Achievements: \n"+recentachieve+"\n"),compound="left",font="Ariel 30",command=Achievements)
    AchievementsButton.grid(sticky="new")
    Statsicon = PhotoImage(file='icons/Statistics.png')
    statsframe = Frame(factframe,bg="pink",height=login.winfo_height())
    statsframe.grid(row=1,sticky="esw")
    Showstats = partial(statshownow, name)
    timeon = "0"
    quizdone = "0"
    Avgscore = "0"
    statsbuttons= Button(statsframe, image =Statsicon, text =(" Stats: \n Time spent on:"+timeon+"\n Quizes Done:"+quizdone+"\n Average Score:"+Avgscore+"\n"),compound="left",font="Ariel 20",command=Showstats)
    statsbuttons.grid(sticky="nesw",columnspan=4,rowspan=5)
    global profile_b, exits_b, set_b, feed_b
    profilelabel = Label(frame,text='    ',bg=barcolour).grid(row=0,column=1)
    exitslabel = Label(frame,text='    ',bg=barcolour).grid(row=1,column=1)
    setlabel = Label(frame,text='    ',bg=barcolour).grid(row=2,column=1)
    feedlabel = Label(frame,text='    ',bg=barcolour).grid(row=3,column=1)
    profile_b = Label(frame,text='   ',image=profile,compound="right",bg=barcolour,relief=RIDGE)
    exits_b = Button(frame,text='   ',image=exits,compound="right",bg=barcolour,relief=RAISED)
    global set_b
    set_b =  Button(frame,text='   ',image=settings,compound="right",bg=barcolour,relief=GROOVE)
    feed_b = Button(frame,text='   ',image=feed,compound="right",bg=barcolour,relief=SUNKEN)
    profile_b.grid(row=0,column=3,pady=10, columnspan=2)
    exits_b.grid(row=1,column=3,pady=10, columnspan=2)
    set_b.grid(row=2,column=3,pady=50, columnspan=2)
    feed_b.grid(row=3,column=3, columnspan=2)
    frame.bind('<Enter>',lambda e: expand())
    frame.bind('<Leave>',lambda e: contract())
    frame.grid_propagate(False)
    login.mainloop()

[不需要的结果] [1]: /image/UBA0N.png

最佳答案

试试这个:

import tkinter as tk

root = tk.Tk()
root.geometry("500x500")

# Create the left frame
left_frame = tk.Frame(root, bg="blue")
left_frame.pack(side="left", fill="both", expand=True)

# Create the center frame
center_frame = tk.Frame(root, bg="red")
center_frame.pack(side="left", fill="both", expand=True)
# Populate the center frame
time_frame = tk.Frame(center_frame, bg="white")
time_frame.pack(side="top", fill="x")
# Show the time+date
time_label = tk.Label(time_frame, text="20:44:22", bg="white")
time_label.pack(side="top", fill="x")
date_label = tk.Label(time_frame, text="17/4/2021", bg="white")
date_label.pack(side="top", fill="x")
# Show the `Quizes` button
quizes_frame = tk.Frame(center_frame, bg="green")
quizes_frame.pack(side="top", fill="x")
# Show the image on the left and the label on the right
quizes_img = tk.Label(quizes_frame, bg="green", image=None)
quizes_img.pack(side="top", fill="x", expand=True)
quizes_label = tk.Label(quizes_frame, text="Quizes", bg="green")
quizes_label.pack(side="top", fill="x", expand=True)
# Show the `Lan` button
lan_frame = tk.Frame(center_frame, bg="yellow", height=100) # Dummy height
lan_frame.pack(side="top", fill="x")

# Create the right frame
right_frame = tk.Frame(root, bg="pink")
right_frame.pack(side="left", fill="both", expand=True)

我重写了你的部分代码并使用了.pack因为大多数时候它要么是side="top"side="right" .

这就是.pack作品:

  • 您可以指定一个方向,它将根据最后创建的小部件放置在该方向。想象一下这种情况:
 ----------
|          |
| widget 1 |
|          |
 ----------

如果您调用 <widget 2>.pack(side="right")然后新的小部件将像这样放在最后一个 (widget 1) 的右边:

 ---------- ----------
|          |          |
| widget 1 | widget 2 |
|          |          |
 ---------- ----------

关于框架内的python tkinter框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67142491/

相关文章:

python - Python中Tk的背景颜色

python通过按钮事件清除文本框

python - 在Python中的独立(非阻塞)线程中检测按键

python - 对角线等于零且 [x,y] =-[y,x] 的 numpy 数组

Python Selenium WebDriverException : chrome not reachable while opening ChromeDriver

Python 删除 for 循环内的数组项

python - 使用 Python 通过 HTTP 下载压缩内容

python - 另一个类中的 tkinter 变量

python - Tkinter Canvas - 在顶部绘制文本

python - Tkinter 进度条在 Windows 下不工作