Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些复选框可以在 sub.xml 中更改它们的值。多次。但是我所有的复选框都保持不变,直到 sub 结束。只有当子完成时,复选框才会更新。那么如何让它们在每次它们的值发生变化时更新呢?谢谢。
你要么想调用$mainwindow->idletasks,要么$mainwindow->update在子例程中。 idletasks只更新屏幕,同时update处理新的用户交互(这个邮件列表更好地解释了它)。基本上,您必须让 MainLoop 有机会赶上您所做的更改。
$mainwindow->idletasks
$mainwindow->update
idletasks
update