Busy Indicator for QML/de: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(Sub-categorize)
 
(4 intermediate revisions by one other user not shown)
Line 1: Line 1:
[[Category:Snippets]]
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
{{LangSwitch}}
[[Category:Snippets::QML]]
[[Category:HowTo]]
[[Category:HowTo]]
[[Category:Developing_with_Qt::Qt Quick]]
[[Category:Developing with Qt::Qt Quick::QML]]
[[Category:Developing_with_Qt::Qt Quick::QML]]
[[Category:German]]
[[Category:German]]


[toc align_right="yes" depth="4"]
Die '''QtQuick.Controls 1.3''' bringen den '''BusyIndicator''' mit. Es ist eine fertige, einfach zu benutzende Komponente. Im folgenden wird ein Beispiel-Schnipsel gegeben, der ihre Verwendung demonstriert. Weitere Informationen finden sich in der [http://doc.qt.io/qt-5/qml-qtquick-controls-busyindicator.html Dokumentation] .
 
'''Deutsch''' | [[Busy-Indicator-for-QML|English]]
 
= Busy Indicator =
 
Die '''QtQuick.Controls 1.3''' bringen den '''BusyIndicator''' mit. Es ist eine fertige, einfach zu benutzende Komponente. Im folgenden wird ein Beispiel-Schnipsel gegeben, der ihre Verwendung demonstriert. Weitere Informationen finden sich in der "Dokumentation":http://doc.qt.io/qt-5/qml-qtquick-controls-busyindicator.html .


<code>
<code>

Latest revision as of 12:29, 28 November 2016

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

Die QtQuick.Controls 1.3 bringen den BusyIndicator mit. Es ist eine fertige, einfach zu benutzende Komponente. Im folgenden wird ein Beispiel-Schnipsel gegeben, der ihre Verwendung demonstriert. Weitere Informationen finden sich in der Dokumentation .

import QtQuick 2.4
import QtQuick.Controls 1.3
import QtQuick.Window 2.2

ApplicationWindow {
 title: qsTr("Hello World")
 width: 640
 height: 480
 visible: true

BusyIndicator {
 id: busyIndication
 anchors.centerIn: parent
 // 'running' defaults to 'true'
 }

Button {
 anchors.horizontalCenter: parent.horizontalCenter
 anchors.bottom: parent.bottom
 text: busyIndication.running ? "Stop Busy Indicator" : "Start Busy Indicator"
 checkable: true
 checked: busyIndication.running
 onClicked: busyIndication.running = !busyIndication.running
 }
}