松散 XAML 中的程序集引用

发布于 2024-09-07 00:45:38 字数 221 浏览 5 评论 0原文

我的情况是,我的松散 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红ご颜醉 2024-09-14 00:45:38

像这样:

xmlns:Awesome="clr-namespace:MyAwesomeNameSpace"

然后这样使用您的控件:

<Awesome:MyAwesomeControl />

对于漂亮的架构,请阅读 MSDN 上的这篇文章:
http://msdn.microsoft.com/en-us/library/ms747086。 aspx

您将需要 XmlnsDefinitionAttribute 你的类的定义。

希望这有帮助!

Like so:

xmlns:Awesome="clr-namespace:MyAwesomeNameSpace"

And then use your controls as such:

<Awesome:MyAwesomeControl />

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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文