xaml 什么是“本地:”?

发布于 2024-10-26 06:55:30 字数 145 浏览 2 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

月下客 2024-11-02 06:55:32

在 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.

江城子 2024-11-02 06:55:32

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>

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