このページでは

クイック付属プロパティ型

この警告カテゴリーはqmllintによって[Quick.attached-property-type]

アタッチされたプロパティは、特定の型から派生したオブジェクトにアタッチされなければなりません。

何が起こりましたか?

間違った型のオブジェクトにアタッチド・プロパティをインスタンス化しました。

これはなぜ悪いのですか?

attachedプロパティは機能しません。

import QtQuick

Item {
    QtObject {
        LayoutMirroring.enabled: true
    }
}

この警告を修正するには、囲んでいる型を警告メッセージに記載されている型から継承するように変更してください:

import QtQuick

Item {
    Item {
        LayoutMirroring.enabled: true
    }
}

© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.