0

WPF数据绑定中元素名称属性的用途是什么。

例如

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300" Name="win">
    <TextBox x:Name="txtData" width="100" height="26" Text={Binding ElementName=win,Mode=TwoWay,Path=Data}/>
<Window>

问候, 普里扬克·塔卡

4

1 回答 1

1

它用于绑定到应用程序中的另一个元素 - 请参阅http://msdn.microsoft.com/en-us/library/system.windows.data.binding.elementname.aspx

在您的情况下,您正在尝试绑定到名为winWindow的元素。

于 2012-06-07T09:36:14.567 回答