選択できるアイテムが 1 つだけのドロップダウン ボックスがある場合もありますが、このアイテムはスペースを含む文字列である可能性があります。Rでこれを行うにはどうすればよいですか?問題は次のとおりです。
library(tcltk2)
root<-tktoplevel()
v <- tclVar()
d <- tk2combobox(root, textvariable=v)
tkpack(d)
# works
tkconfigure(d, values=c("a string with spaces", "a second string"))
# inserts four items instead of one
tkconfigure(d, values=c("a string with spaces"))
どんなヒントでも大歓迎です!