仅接受单行的 PyGTK TextView
我觉得问这个问题很傻,但是如何创建一个只接受单行的 TextView 呢?大多数其他 gui 工具包都有“setMultiline”等方法,但 PyGTK 似乎真的很喜欢多行。其他一些语言为这些更简单的文本框提供了“TextFields”。
http://www.pygtk.org/ docs/pygtk/class-gtktextview.html#method-gtktextview--set-justification
I feel rather silly to ask this, but how does one create a TextView that only accepts single lines? Most other gui toolkits have a method such as "setMultiline" etc, but PyGTK seems to really enjoy multiple lines. Some other languages have "TextFields" for these simpler text boxes.
http://www.pygtk.org/docs/pygtk/class-gtktextview.html#method-gtktextview--set-justification
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
gtk.Entry
?http://www.pygtk.org/docs/pygtk/class-gtkentry.html
use
gtk.Entry
?http://www.pygtk.org/docs/pygtk/class-gtkentry.html
哦,我找到了。我想这个名字很有意义......
http://www.pygtk.org/文档/pygtk/class-gtkentry.html
Oh I found it. I suppose the name makes sense...
http://www.pygtk.org/docs/pygtk/class-gtkentry.html