PyGTK设置条目文本(绝对初学者)
我是一个彻头彻尾的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.