如何定义2个默认命名空间?

发布于 2024-10-27 22:01:30 字数 37 浏览 1 评论 0原文

我有一个自定义控件库,并希望它们无需前缀即可使用。是否可以?

I have a library of custom contols and want them to be availavle without prefixes. Is it possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不离久伴 2024-11-03 22:01:30

您可以通过在命名空间上方添加以下内容来将控件设置为包含在默认 xmlns 中:

[assembly: XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "MyControls.MarkupExtensions")]
namespace MyControls.MarkupExtensions
{
...
}

这只是将它们添加到内置控件的 xmlns 中,而不是替换它。执行此操作时需要小心,不要踩到任何内置控件的名称。

You can set your controls to be included in the default xmlns by adding this above the namespace:

[assembly: XmlnsDefinition("http://schemas.microsoft.com/winfx/2006/xaml/presentation", "MyControls.MarkupExtensions")]
namespace MyControls.MarkupExtensions
{
...
}

This just adds them to the xmlns of the built-in controls rather than replacing it. You need to be careful when doing this that you don't step on names of any of the built-in controls.

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