管理Gtkentry中的光标位置



python3-gtk3如果我替换了光标在字符串的左侧,则在右侧有理由。我希望他正确。"光标位置"属性仅读取。如何管理光标位置?感谢您的帮助。

这是您的示例。在条目中按" Enter"以查看结果。

#!/usr/bin/env python
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
import os, sys
class GUI:
    def __init__(self):
        window = Gtk.Window()
        entry = Gtk.Entry()
        entry.connect("activate", self.entry_activated )
        entry.set_alignment(1.0)
        window.add(entry)
        window.show_all()
        window.connect("destroy", self.on_window_destroy )
    def on_window_destroy(self, window):
        Gtk.main_quit()
    def entry_activated (self, entry):
        text = entry.get_text()
        text = text * 2
        entry.set_text(text)
        length = len(text)
        entry.set_position(length)
def main():
    app = GUI()
    Gtk.main()
if __name__ == "__main__":
    sys.exit(main())

相关内容

  • 没有找到相关文章

最新更新