如何在 Perl 中使用 Win32 GUI 自动聚焦于文本字段?

发布于 2024-08-16 06:15:25 字数 597 浏览 7 评论 0原文

我正在按照在线 Win32::Gui 教程 学习如何添加 GUI到我的 Perl 应用程序。到目前为止一切都很好。但我遇到了一些烦人的小问题。所以我再次在这里寻求帮助。

一个问题是,我必须在文本字段中单击鼠标才能输入。我尝试过这样的事情:

$Object->AddTextfield(
        -name   => "Birthday",
        -left   => 75,
        -top    => 50,
        -width  => 180,
        -height => 20,
        -number => 1,
        -prompt => "Input birthday:",       

    );


$Object->Birthday->GetFocus();
$Object->Birthday->Activate();

但它不起作用。有人可以帮忙吗?提前致谢。

I'm following an online Win32::Gui tutorial to learn how to add a GUI to my Perl application. So far everything's been good. But I'm having some pesky small problems. So I'm asking for help here again.

One problem is, I have to click my mouse in the textfield before I can type. I tried something lie this:

$Object->AddTextfield(
        -name   => "Birthday",
        -left   => 75,
        -top    => 50,
        -width  => 180,
        -height => 20,
        -number => 1,
        -prompt => "Input birthday:",       

    );


$Object->Birthday->GetFocus();
$Object->Birthday->Activate();

But it doesn't work. Can anyone kindly help? Thanks in advance.

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

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

发布评论

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

评论(2

冷月断魂刀 2024-08-23 06:15:25

$Object->Birthday->SetFocus()

how about $Object->Birthday->SetFocus()?

柠檬色的秋千 2024-08-23 06:15:25

生日->SetFocus() 会正常工作......

你可以尝试

Birthday->SetFocus() will work fine....

you can try

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