QT Quick 프로그램을 작성하여 TabView를 사용합니다. Tabview에있는 botton b1을 클릭하면 프로그램은 show_text()를 호출하고 b1의 텍스트를 인쇄해야하지만 "ReferenceError : b1 is not defined"가 인쇄됩니다. 감사의 말을 전하면됩니다.Qt 빠른 제어 탭 뷰의 ReferenceError
import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Window 2.1
ApplicationWindow {
function show_text() {
console.log(b1.text)
}
TabView {
id: tv
Tab {
id: tab1
Button{
id: b1
text:"b1's text"
onClicked: {
//console.log(b1.text)
show_text()
}
}
}
}
}
로 객체를 전달합니다. id "b1"'을 (를) 찾을 수 없습니다. – ony