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

จะแนบแถบเลื่อนแนวตั้งกับ Treeview โดยใช้ Tkinter ได้อย่างไร?


หากคุณต้องการแสดงรายการที่มีบางคอลัมน์ในนั้น คุณสามารถใช้วิดเจ็ต Treeview ใน Tkinter วิดเจ็ต Treeview อนุญาตให้ผู้ใช้เพิ่มรายการจำนวนมากพร้อมกับคุณสมบัติที่สามารถปรับแต่งได้ทันที

หากคุณต้องการแนบแถบเลื่อนแนวตั้งกับรายการในวิดเจ็ต Treeview คุณสามารถกำหนดคอนสตรัคเตอร์ของ Scrollbar และกำหนดค่าโดยเพิ่มคำสั่งเข้าไป มาดูตัวอย่างกันว่ามันทำงานอย่างไร

ตัวอย่าง

# Import the required libraries
from tkinter import *
from tkinter import ttk

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

# Set the size of the tkinter window
win.geometry("700x350")

# Create an instance of Style widget
style= ttk.Style()
style.theme_use('clam')

# Add a Treeview widget and set the selection mode
tree= ttk.Treeview(win, column=("c1", "c2"), show='headings', height= 8, selectmode="browse")
tree.column("#1", anchor=CENTER, stretch= NO)
tree.heading("#1", text="Fname")
tree.column("#2", anchor=CENTER, stretch=NO)
tree.heading("#2", text="Lname")

# Insert the data in Treeview widget
tree.insert('', 'end', text= "1",values=('Alex', 'M'))
tree.insert('', 'end', text="2",values=('Belinda','Cross'))
tree.insert('', 'end', text="3",values=('Ravi','Malviya'))
tree.insert('', 'end', text="4",values=('Suresh','Rao'))
tree.insert('', 'end', text="5",values=('Amit','Fernandiz'))
tree.insert('', 'end', text= "6",values=('Raghu','Sharma'))
tree.insert('', 'end',text= "7",values=('David','Nash'))
tree.insert('', 'end',text= "8",values=('Ethan','Plum'))
tree.insert('', 'end', text= "9", values=('Janiece','-'))

# Adding a vertical scrollbar to Treeview widget
treeScroll = ttk.Scrollbar(win)
treeScroll.configure(command=tree.yview)
tree.configure(yscrollcommand=treeScroll.set)
treeScroll.pack(side= RIGHT, fill= BOTH)
tree.pack()

win.mainloop()

ผลลัพธ์

การเรียกใช้โค้ดด้านบนจะแสดงหน้าต่างที่มีรายการสิ่งของในวิดเจ็ต treeview พร้อมกับแถบเลื่อนแนวตั้งที่แนบมาด้วย

จะแนบแถบเลื่อนแนวตั้งกับ Treeview โดยใช้ Tkinter ได้อย่างไร?