Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 13861

How to add varied heights to each treeview in tkinter ttkbootstrap?

$
0
0

i need to set heights for each table seperately as they are not same

s = ttk.Style()s.configure('Treeview', rowheight=40)table1 = ttk.Treeview(home_frame, style="mystyle.Treeview", columns=("Name"), show="tree") // 50table2 = ttk.Treeview(home_frame, style="mystyle.Treeview", columns=("Name"), show="tree") // 25table3 = ttk.Treeview(home_frame, style="mystyle.Treeview", columns=("Name"), show="tree") // 25table4 = ttk.Treeview(home_frame, style="mystyle.Treeview", columns=("Name"), show="tree") // 10

I tried to configure style, but I have four different treeviews that need to have different heights.

s = ttk.Style()s.configure('Treeview', rowheight=50)s.configure('Treeview_2', rowheight=25)s.configure('Treeview_3', rowheight=25)s.configure('Treeview_4', rowheight=10)

but didn't work


Viewing all articles
Browse latest Browse all 13861

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>