为什么 -editable 在 iwidgets (tcl/tk) 中不起作用?
我试图在一些 GUI 中使用 iwidgets,并且我想让组合框不可编辑。根据 activetcl 文档,组合框提到了 -editable
选项,但它不起作用。
combobox $frm_sat1.c2 \
-textvariable [itcl::scope type] \
-state normal -entries {"1 opt" "2 opt"} -editable 0;
I was trying to use iwidgets in some GUI and I want to make combobox non-editable. As per activetcl documentation, the -editable
option is mentioned for combobox and yet it is not working.
combobox $frm_sat1.c2 \
-textvariable [itcl::scope type] \
-state normal -entries {"1 opt" "2 opt"} -editable 0;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个
try this
我自己找到了答案。
“-国家限制”作品
Found the answer myself.
"-state restricted" works