Displaying 1 result from an estimated 1 matches for "labelfram".
Did you mean:
labelframe
2006 Oct 21
0
tcltk: multiple listboxes, selection
...rame.1, "ComboBox", values = infras,
editable = FALSE)
tcl(combo_topology, "setvalue", "first")
tkgrid(tklabel(frame.1, text="Network topology"), combo_topology)
tkgrid(frame.1, sticky = "w")
# X values
frame.x <- tkwidget(tt, "labelframe", text = "X value")
tl.x <- tklistbox(frame.x, height = length(xvals) / 2,
width = 50, selectmode = "browse", background = "white")
for(i in seq(from=1, to=length(xvals), by=2)) {
tkinsert(tl.x, "end", xvals[[i]])
}
tksele...