tkinter文本框功能exportselection=False
在Win10计算机上不起作用。
我有2个文本框,我需要同时突出显示它们。我刚刚发现exportselection=False
,并且可以在我的Linux机器上使用。
到目前为止,我在3台Linux机器,2台Win10机器上进行了尝试,看来它仅在Linux上有效。
textBox = Text(midFrame, height=textArea_height, width=textArea_width, exportselection=False)
为什么它不能在Win10上运行?