到目前为止,在使用ttk.Notebook
小部件时,但我无法将标签设置在彼此下方,它们一直向东堆积。
有没有办法让它们以某种方式堆叠?
到目前为止,在使用ttk.Notebook
小部件时,但我无法将标签设置在彼此下方,它们一直向东堆积。
有没有办法让它们以某种方式堆叠?
是的,请检查此代码:
import tkinter as tk
from tkinter import ttk
root = tk.Tk()
style = ttk.Style(root)
style.configure('lefttab.TNotebook', tabposition='wn')
notebook = ttk.Notebook(root, style='lefttab.TNotebook')
f1 = tk.Frame(notebook, bg='red', width=200, height=200)
f2 = tk.Frame(notebook, bg='blue', width=200, height=200)
notebook.add(f1, text='Frame 1')
notebook.add(f2, text='Frame 2')
notebook.grid(row=0, column=0, sticky="nw")
root.mainloop()