gpt4 book ai didi

python - 如何在 GTK.Stack 中获取可见子项的索引

转载 作者:太空宇宙 更新时间:2023-11-04 00:44:34 25 4
gpt4 key购买 nike

能否在Gtk.Stack中获取visible的索引?

例子:

>>> stack = Gtk.Stack()
>>> stack.add_named(any_widget1, 'any_widget1') # Index 0
>>> stack.add_named(any_widget2, 'any_widget2') # Index 1
>>> stack.add_named(any_widget3, 'any_widget3') # Index 2
>>>
>>> stack.get_visible_child_index()
0

这可能吗?

最佳答案

Stack 文档包括 position 子属性:

child = stack.get_visible_child()
if child is not None:
position = stack.child_get_property(child, "position")

关于python - 如何在 GTK.Stack 中获取可见子项的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40307121/

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