Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
QMLプラグインを作成しましたが、次のように使用できます。
import "MyElement" 1.0 Rectangle{ width:500;height:500; MyElem{ } }
MyElemプラグインです。このプラグインをローダー要素のソースとして どのように使用できるのか疑問に思っていますか?ローダーのソースは文字列を想定していますが、ここにコンポーネントがあります。
MyElem
次のようにローダーに使用できます。
import "MyElement" 1.0 Component { id: myElement MyElem{ } } Loader { sourceComponent: myElement}