gpt4 book ai didi

gtk - 如何让 GtkTextView 看起来像 GtkEntry?

转载 作者:行者123 更新时间:2023-12-02 03:01:35 27 4
gpt4 key购买 nike

或者“如何向 GtkTextView 添加可见(细)边框”?这可能吗?

提前谢谢您。

最佳答案

几年后......但在网络上搜索仍然没有给出这个问题的好的答案。

解决方案非常简单:只需创建一个GtkFrame并添加包含GtkTextViewGtkScrolledWindow,下面是一些Python示例代码:

frame = Gtk.Frame()
scroll = Gtk.ScrolledWindow()
scroll.set_hexpand( True )
scroll.set_border_width( 3 )
textview = Gtk.TextView()
scroll.add( textview )
frame.add( scroll )

关于gtk - 如何让 GtkTextView 看起来像 GtkEntry?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6240221/

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