Extend QtQuickControls 2
-
Good morning,
I want to create some own Qt Quick Controls 2 elements from c++. But I guess, they are private at least I couldn't found any public headers.
Is their any way to let my custom c++ component extend from QtQuickControl?I know I could use qml (as you can import qtquickcontrol templates, but I don't want this.
-
Good morning,
I want to create some own Qt Quick Controls 2 elements from c++. But I guess, they are private at least I couldn't found any public headers.
Is their any way to let my custom c++ component extend from QtQuickControl?I know I could use qml (as you can import qtquickcontrol templates, but I don't want this.
@Leon_2001 said in Extend QtQuickControls 2:
Is their any way to let my custom c++ component extend from QtQuickControl?
not via C++, only as you said in QML.
The types are implemented in a plugin, so not meant to be linked against. -
Hi,
You might then be interested in @uwer's QSkinny project.