PyGTK设置条目文本(绝对初学者)

发布于 2024-12-11 06:30:13 字数 253 浏览 0 评论 0原文

我是一个彻头彻尾的 PyGTK 菜鸟,只是为了把它说出来。 我正在尝试使用此代码设置条目的文本:

def on_button1_clicked(self, builder, data = None):
    gtk.Entry(txtInput).set_text("Hello")

但是当我单击按钮时,我收到一个类型错误,要求在该代码的第二行某处输入整数。这是怎么回事?我不确定我做错了什么,谷歌也没有提供帮助。 TIA

I'm a total PyGTK noob, just to get that out there.
I'm trying to set an entry's text with this code:

def on_button1_clicked(self, builder, data = None):
    gtk.Entry(txtInput).set_text("Hello")

but when I click the button I get a type error asking for an integer somewhere on the second line of that code. What's going on? I'm not sure what I'm doing wrong and Google hasn't helped.
TIA

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

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

发布评论

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

评论(1

同尘 2024-12-18 06:30:13

txtInput 应该是一个整数。
它是条目的最大长度(或最大长度为 0)。
请参阅 gtk.Entry 类参考

The txtInput should be an integer.
It's the maximum length of the entry (or 0 for maximum).
See gtk.Entry Class Reference.

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