Qt Creator 5.5在Windows和MacOS中都没有语法突出显示TreeView
。
import QtQuick 2.5
import QtQuick.Window 2.2
import QtQuick.Controls 1.4
ApplicationWindow {
visible: true
width: Screen.width /2
height: Screen.height/2
TreeView {
anchors.fill: parent
}
}
TreeView
标记为红色下划线,好像Qt Creator无法识别,但它确实可以编译并运行良好。为什么语法没有正确突出显示?
我认为这是一个错误,因为所需的模块已正确导入。
您可以使用行前的//@disable-check M300
禁止显示警告TreeView {
import QtQuick 2.5
import QtQuick.Window 2.2
import QtQuick.Controls 1.4
ApplicationWindow {
visible: true
width: Screen.width /2
height: Screen.height/2
//@disable-check M300
TreeView {
anchors.fill: parent
}
}