xaml 什么是“本地:”?
XAML 中的 local: 是什么?C# 类中的哪些参数可以称为 local:
?
在我正在查看的一些代码中,我看到 xmlns:local="clr-namespace:AskLocal"
。这意味着什么?
What is local: in XAML, and what parameters in a C# class can be called local:
?
In some code I am looking at, I see xmlns:local="clr-namespace:AskLocal"
. What does this mean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 XAML 中,当引用声明当前类的命名空间时,通常使用本地别名。这不是强制性的,只是通常这样做。
In XAML the local alias is commonly used when referring to the namespace in which the current class is declared. It is not mandatory, it is just commonly done.
local 是一个 xml 命名空间。在这种情况下,“local”将是名称空间 AskLocal 的别名。
它将允许您直接在 xaml 中使用
从 AskLocal 命名空间声明资源、控件、转换器等local is an xml namespace. In this case "local" will be the alias for the namespace AskLocal.
It will allow you to declare resources, controls, converters etc from the AskLocal namespace directly in your xaml by using
<local:nameofyourcontrol></local:nameofyourcontrol>