MauiKit Controls

TabViewItem.qml
1import QtQuick.Controls
2import QtQuick.Layouts
3import QtQuick
4
5import org.mauikit.controls 1.3 as Maui
6
7/**
8 * @inherit QtQuick.Loader
9 * @brief Just a basic wrapper around a QQC2 Loader, to put in a TabView view and lazy-load it, only when it is the current view or already has been activated.
10 *
11 * This can be used to lazy loading tab views, used with the TabView::addTab silent mode.
12 */
13Loader
14{
15 id: control
16
17 focus: true
18 active: ListView.isCurrentItem || item
19}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 17 2024 11:56:16 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.