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 に答える