GUI 冻结 - Perl Tk

发布于 2024-11-07 17:01:43 字数 437 浏览 0 评论 0原文

我使用 Perl/Tk 开发了一个小型应用程序。当按下应用程序中的按钮之一时,应用程序将从网络获取数据。但问题是 GUI 会挂起,直到控制权返回为止。我知道这是由于延迟导致主窗口没有响应。我使用了 update() 函数,但问题仍然存在。所以我谷歌了一下,发现我们可以使用线程来解决这个问题。但我不确定如何在 Perl/Tk 中使用线程。这是我的示例代码

use warnings;
use Tk;

my $mw = new MainWindow;

my $button = $mw -> Button(-text => "Fetch", 
        -command => \&FetchData)
    -> pack();
MainLoop;

sub FetchData
{
//Fetching data from Web
}

提前致谢。

I have developed a small application using Perl/Tk. The application will fetch data from the web when one of the buttons in the application is pressed. But the problem is that the GUI gets hang until control is returned. I know this is due to delay so the main window goes unresponsive. I used the update() function but still the problem persists. So I google around and came to know we can use threads to overcome this problem. But I am not sure how to use threads in Perl/Tk. Here is my sample code

use warnings;
use Tk;

my $mw = new MainWindow;

my $button = $mw -> Button(-text => "Fetch", 
        -command => \&FetchData)
    -> pack();
MainLoop;

sub FetchData
{
//Fetching data from Web
}

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清浅ˋ旧时光 2024-11-14 17:01:43

从来没有尝试过这个,但是这个 来自 2008 年“Perl Tk 和线程”的 PerlMonks 线程 可能帮助您继续前进。

Have never tried this, but this PerlMonks thread from 2008 "Perl Tk and Threads" might help you get going.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文