这是我对spinbox的命令:
spinbox .mytopframe.box -from 8.0 -to 256.0 -increment 8 -borderwidth 10 -wrap on -textvariable no_of_pins
set var1 $no_of_pins.get()
但是我无法将spinbox中的值传递给var1。 当我访问var1变量时,我在表达式结尾处收到类似“0.get()额外标记”的错误。 如果我直接访问引脚的文本变量no,我会收到错误,因为“无法读取no_of_pins”
请帮我修改我的代码
答案 0 :(得分:0)
读取spinbox值的代码应该只是set var1 $no_of_pins
,.get()看起来就像是从另一种语言中悄悄进入的东西。