Examples with "QML-Elemente" and their translation in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Neben der Nutzung von QML-Standardelementen können Entwickler ihre eigenen QML-Elemente in C++ schreiben.
Besides using standard QML elements, developers can write their own custom QML elements in C++.
Neben der Erweiterung um angepasste QML-Elemente gibt Qt Entwicklern ebenfalls die Möglichkeit, durch die Vererbung der QGestureRecognizer-Klasse eigene Gesten in C++ zu schreiben.
Besides custom QML elements, Qt also allows developers to write their own custom gestures in C++ by inheriting the QGestureRecognizer class.
Durch das Hinzufügen individueller QML-Elemente lässt sich die bereits umfangreiche Sammlung an QML-Elementen erweitern und ergänzen.
Andere resultaten
Ein Beispiel für ein QML-Element ist GestureArea.
Mittels Qts Meta-Object System können wir C++ Funktionen als Eigenschaften für QML Elemente zur Verfügung stellen.
Using Qt's Meta-Object System, we can expose C++ functions as properties that QML elements can use.
In diesem Abschnitt werden wir den Import anderer QML Elemente besprechen, und wie man bereits erstellte Komponenten wiederverwendet um andere Komponenten zu erstellen.
In this section, we will cover how to import QML elements and how to reuse some of the created components to build other components.
Als erstes importieren wir die Qt 4.7 QML Elemente in den qmlviewer, die wir später verwenden.
First, the import QtQuick 1.0 allows the qmlviewer tool to import the QML elements we will later use.
Der Malstift übernimmt die X-Y-Koordinaten der Mausposition und erzeugt an dieser Stelle ein dynamisches QML-Element. Qt.createQmlObject erzeugt dynamisch ein Element und object.x = x; object.y = y; platziert das Objekt an den gegebenen Koordinaten.
The paintshape will take x, y coordinates of the mouse position and at that given location will add in a dynamic QML element. Qt.createQmlObject creates an element dynamically and object.x = x; object.y = y; sets the object at the given coordinates.
Wenn der QML-Code grafische Elemente innerhalb eines Fensters öffnet, so muss @qmlview anstelle von @qml verwendet werden.