为什么 WPF 有 x:Name 和 Name XAML?
为什么 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
长话短说: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.