作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我以编程方式使用 Gtk.FlowBox.select_child() 时,选择工作正常。但是如果我之后使用箭头键移动选择,它会忽略之前选择的项目并从 FlowBox 中的第一个项目开始移动。我不知道这是一个错误还是我必须做其他事情才能让光标知道新位置。用鼠标选择按预期工作。
我在 Linux 上使用 gtk3 版本 3.24.23。
import os
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk, GdkPixbuf
# just a folder with a bunch of png images.
ICON_DIR = os.path.expanduser("~/.icons")
class Window(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self)
self.set_default_size(480, 400)
self.scr_win = Gtk.ScrolledWindow(parent=self)
self.flowbox = Gtk.FlowBox(parent=self.scr_win, homogeneous=True,
row_spacing=8, column_spacing=8, min_children_per_line=4,
max_children_per_line=100)
for i, icon_name in enumerate(os.listdir(ICON_DIR)):
self.flowbox.insert(
Gtk.Image.new_from_pixbuf(
GdkPixbuf.Pixbuf.new_from_file_at_size(
os.path.join(ICON_DIR, icon_name), 64, 64)), i)
self.show_all()
# selecting the 51st item just as an example:
selected = self.flowbox.get_child_at_index(50)
self.flowbox.select_child(selected)
self.scr_win.get_vadjustment().set_value(selected.get_allocation().y)
if __name__ == "__main__":
win = Window()
win.connect("destroy", Gtk.main_quit)
Gtk.main()
最佳答案
我所要做的就是在选择后捕获焦点:
selected.grab_focus()
关于python - 箭头键通过 Gtk.FlowBox.select_child() 忽略选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65097651/
当我以编程方式使用 Gtk.FlowBox.select_child() 时,选择工作正常。但是如果我之后使用箭头键移动选择,它会忽略之前选择的项目并从 FlowBox 中的第一个项目开始移动。我不知
我是一名优秀的程序员,十分优秀!