0
點擊更新按鈕後,alist會更新,我如何獲取更新值並可以在組合框中選擇?非常感謝!如何跟蹤變量?
namespace eval PreGen {
set alist {sec1 sec2 sec3 sec4}
proc SetUp {} {
ttk::combobox .c -values $PreGen::alist
button .b -text update -command PreGen::Update
grid ...
}
proc Update {} {
...
set PreGen::alist {op1 op2 op3 ...} #the list value got from other file
...
}
}
非常感謝。這真的讓我學到了很多! – Jimmy