如何在 Perl 中使用 Win32 GUI 自动聚焦于文本字段?
我正在按照在线 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
$Object->Birthday->
SetFocus()
?how about
$Object->Birthday->
SetFocus()
?生日->SetFocus() 会正常工作......
你可以尝试
Birthday->SetFocus() will work fine....
you can try