문제

when i added an item in a qlistwiget and reaches the bottom. A scroll bar appears, how can i ensurevisible an item that was newly added from the qlistwidget? Or how can i get the focus to the last index?

도움이 되었습니까?

해결책

QListWidget inherits from QAbstractItemView, which has the methods you are looking for:

다른 팁

After creating the new QListWidgetItem, pass it to QListWidget.scrollToItem to ensure that it becomes visible.

Note that scrollToItem also has a scroll hint parameter that allows fine-tuning of how the item is re-positioned in the list widget.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top