为什么 WPF 有 x:Name 和 Name XAML?

发布于 2024-11-07 06:46:13 字数 275 浏览 0 评论 0原文

可能的重复:
在 WPF 中, x:Name 和 Name 属性?

为什么 WPF 有 x:Name 和 Name XAML? x:Name 是怎么回事?

Possible Duplicate:
In WPF, what are the differences between the x:Name and Name attributes?

Why does WPF have x:Name and Name XAML? What's the deal with x:Name?

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

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

发布评论

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

评论(1

星軌x 2024-11-14 06:46:13

长话短说:x:Name 是一个附加属性,因此可以对所有内容进行设置。 Name 不是附加属性,因此仅适用于公开 Name 属性的事物。 WPF 将 Name 别名为 x:Name,因此您始终可以安全地使用 x:Name,这是推荐的做法,因为您可以在任何地方使用它。

Long story short: x:Name is an attached property and can thus be set on everything. Name is not an attached property and thus is only available on things that expose a Name property. WPF aliases Name to x:Name so you are safe to always use x:Name and this is what is recommended as you can use it everywhere.

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