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.
从 QStackedWidget 中删除小部件后,我想根据小部件的相应位置更新小部件的索引。可能我需要一个循环;请问我该怎么做。
1) 当一个小部件被移除时,一个信号 -widgetRemoved(int index) 被发出。
widgetRemoved(int index)
2)通过使用该功能count(),您可以获得小部件的数量。
count()
所以现在,您知道已删除小部件的索引和小部件的总数。使用这些信息来相应地使用该函数设置其他小部件的索引setCurrentIndex(int index)。
setCurrentIndex(int index)