码迷,mamicode.com
首页 > Windows程序 > 详细

C#WPF Binding 中的Path什么意思

时间:2015-02-03 22:58:23      阅读:396      评论:0      收藏:0      [点我收藏+]

标签:c#wpf binding 中的pat   c#wpf   

<TextBox x:Name="txt1" />
<TextBlock x:Name="txt2" Text="{Binding Path=Text, ElementName=txt1}" /> 
//绑定的是名为txt1的 TextBox(控件类型)控件,但是TextBlock要显示的当然不是控件类型了,所以需要一个标示再次指定显示什么,Path就有用了,在这里表示TextBox类型控件的Text值,就是说,txt1中显示的值。
"{Binding Path=Text, ElementName=txt1}"  标示 txt1中的Text的值。
<TextBlock x:Name="txt2" Text="{Binding Path=Text, ElementName=txt1}" /> 
如果 txt1.Text 是“这是txt1”,txt2由于它的Text绑定了txt1.Text属性,所以txt2.Text 显示的也是“这是txt1”,而且如果txt1.Text的值变动,txt2.Text的值也变动。

C#WPF Binding 中的Path什么意思

标签:c#wpf binding 中的pat   c#wpf   

原文地址:http://blog.csdn.net/wyx100/article/details/43459381

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!