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是插件。 现在我想知道如何使用这个插件作为Loader元素的来源?loader 的来源需要一个字符串,但这里我们有一个组件。
MyElem
您可以像这样将它用于加载程序:
import "MyElement" 1.0 Component { id: myElement MyElem{ } } Loader { sourceComponent: myElement}