松散 XAML 中的程序集引用
我的情况是,我的松散 xaml 文件可以包含来自另一个程序集的自定义控件。我如何引用该程序集。我的 Loose XAML 和程序集位于同一路径。
我知道项目中嵌入的 xaml 或 xaml,引用是这样添加的: xmlns:WpfToolKit="http://schemas.microsoft.com/wpf/2008/toolkit"
现在我如何在松散的 xaml 文件中提供类似类型的引用。
I have scenario where my loose xaml file can contain the custom control from another assembly. How do i make a reference to that assembly. My Loose XAML and assembly are at the same path.
I know the embedded xaml or xaml with in a project, the reference is added like this:
xmlns:WpfToolKit="http://schemas.microsoft.com/wpf/2008/toolkit"
Now how can i give similar type of reference in the loose xaml file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样:
然后这样使用您的控件:
对于漂亮的架构,请阅读 MSDN 上的这篇文章:
http://msdn.microsoft.com/en-us/library/ms747086。 aspx
您将需要 XmlnsDefinitionAttribute 你的类的定义。
希望这有帮助!
Like so:
And then use your controls as such:
For nice looking schemas, please read this article on MSDN:
http://msdn.microsoft.com/en-us/library/ms747086.aspx
You will need the XmlnsDefinitionAttribute definition on your class.
Hope this helps!