QML Binding ElementThe Binding element allows arbitrary property bindings to be created. More... This element was introduced in Qt 4.7. PropertiesDetailed DescriptionSometimes it is necessary to bind to a property of an object that wasn't directly instantiated by QML - generally a property of a class exported to QML by C++. In these cases, regular property binding doesn't work. Binding allows you to bind any value to any property. For example, imagine a C++ application that maps an "app.enteredText" property into QML. You could use Binding to update the enteredText property like this. TextEdit { id: myTextField; text: "Please type here..." } Binding { target: app; property: "enteredText"; value: myTextField.text } Whenever the text in the TextEdit is updated, the C++ property will be updated also. If the binding target or binding property is changed, the bound value is immediately pushed onto the new target. See also QtDeclarative. Property DocumentationThe property to be updated. The value to be set on the target object and property. This can be a constant (which isn't very useful), or a bound expression. This property holds when the binding is active. This should be set to an expression that evaluates to true when you want the binding to be active. Binding { target: contactName; property: 'text' value: name; when: list.ListView.isCurrentItem } |
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 4.8 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com