|
From: Bryan O. <br...@bi...> - 2005-03-16 05:44:29
|
My first attempt at creating a treeview results in a columns that stop
short of filling the entire width of the widget. Is there a way to
configure a particular column to stretch to fill the width, or do I have
to do the math myself and set each column individually?
Here's an example that should illustrate the problem
package require tile
wm geometry . 800x200
ttk::treeview .tree -columns {modified created}
.tree heading "\#0" -text "Column 1"
.tree heading modified -text "Column 2"
.tree heading created -text "Column 3"
pack .tree -side top -fill both -expand y
|