如何定义2个默认命名空间?
我有一个自定义控件库,并希望它们无需前缀即可使用。是否可以?
I have a library of custom contols and want them to be availavle without prefixes. Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过在命名空间上方添加以下内容来将控件设置为包含在默认 xmlns 中:
这只是将它们添加到内置控件的 xmlns 中,而不是替换它。执行此操作时需要小心,不要踩到任何内置控件的名称。
You can set your controls to be included in the default xmlns by adding this above the namespace:
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.