加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – 我最近开始自己学习WPF.声明名称与x:名称有什么区别?

发布时间:2020-12-15 04:13:38 所属栏目:百科 来源:网络整理
导读:例如,我有这个代码: Grid Rectangle Name="TheRectangle" Fill="AliceBlue" Height="100" Width="100" /Rectangle/Grid VS. Grid Rectangle x:Name="TheRectangle" Fill="AliceBlue" Height="100" Width="100" /Rectangle/Grid 非常感谢你提供的信息.我很高
例如,我有这个代码:
<Grid>
    <Rectangle Name="TheRectangle" Fill="AliceBlue" Height="100" Width="100">            
    </Rectangle>
</Grid>

VS.

<Grid>
    <Rectangle x:Name="TheRectangle" Fill="AliceBlue" Height="100" Width="100">            
    </Rectangle>
</Grid>

非常感谢你提供的信息.我很高兴能够学习这样的新东西. :d

解决方法

wpfwiki

There is basically no difference
between the two.

The “x:Name” expression is used in
XAML to assign a name to an object
that will be used to access the object
from the code-behind.

Many classes of the framework expose a Name property,which does exactly this. For these classes,both x:Name and the Name property can be used interchangeably.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读