Pmw.ComboBox
ウィジェットの直接編集を無効にする方法を探しています。entry_field=DISABLED
グレー表示されて使用できないComboBoxの結果を使用したウィジェット構成。これが私のコードで、メニューを直接編集できます。
dropdownQOS = Pmw.ComboBox(parentWindow,
label_text = 'QOS: ',
labelpos = 'w',
selectioncommand = differentiateSettings,
scrolledlist_items = ("Selection1", "Selection2", "Selection3"),
listheight = 57, entry_width = 43)
dropdownQOS.selectitem(0, setentry = 1)
dropdownQOS.pack(anchor = 'n',fill = 'x', expand = 1, padx = 50, pady=5)