Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 PyGtk、Gtk3 中使用 WebKit.WebView 进行编码,遇到了一些奇怪的事情。
在从最大化状态取消最大化窗口时,窗口装饰器失去了最大化按钮并且窗口大小变得非常大。
我该如何解决这个问题???
谢谢...
您必须将 WebView 放入GtkScrolledWindow:
GtkScrolledWindow
scrolled = Gtk.ScrolledWindow() scrolled.add(webview) window.add(scrolled)