gpt4 book ai didi

Python Gtk TextView 在末尾插入文本

转载 作者:太空狗 更新时间:2023-10-29 20:54:13 24 4
gpt4 key购买 nike

我想在最后插入文本到文本缓冲区...我正在使用这个:gtk.TextBuffer.insert_at_cursor

但是如果我点击文本,光标处会出现新的...

如何在末尾添加文本?​​

最佳答案

尝试使用 gtk.TextBuffer.insert()gtk.TextBuffer.get_end_iter() .示例:

# text_buffer is a gtk.TextBuffer
end_iter = text_buffer.get_end_iter()
text_buffer.insert(end_iter, "The text to insert at the end")

注意:一旦插入到 text_buffer 中,end_iter 就会失效,因此无论何时要追加到缓冲区。

关于Python Gtk TextView 在末尾插入文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21795607/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com