クイックアタッチド・プロパティ型

アタッチド・プロパティは、特定の型から派生したオブジェクトにアタッチする必要があります。

何が起こったのか?

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

これはなぜ悪いのでしょうか?

アタッチド・プロパティは機能しません。

import QtQuick

Item {
    QtObject {
        LayoutMirroring.enabled: true
    }
}

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

import QtQuick

Item {
    Item {
        LayoutMirroring.enabled: true
    }
}

© 2025 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.