Windows Phone でのバインドに問題があります。あなたが私を助けてくれることを願っています。
App.xaml に次のデータ テンプレートがあります。
<Application.Resources>
<DataTemplate>
<TextBox Name="txt1"/>
<TextBox Name="txt2"/>
</DataTemplate>
</Application.Resources>
次のデータ テンプレートを含む ListBox があります。
<ListBox>
<ListBox.ItemTemplate>
<DataTemplate>
<TextBox Name="txt1"/>
<TextBox Name="txt2"/>
</DataTemplate>
<ListBox.ItemTemplate>
<ListBox>
ListBox は、ItemsSource プロパティで次のクラスを受け取ります。
public class Product
{
private int _id;
public int Id
{
get { return _id; }
set { _id = value; }
}
private string _name;
public string Name
{
get { return _name; }
set { _name = value; }
}
}
Resources.TextBox.TextプロパティをListBoxItemのオブジェクトにバインドする方法はありますか...
<Application.Resources>
<TextBox Name="txt1" Text={Binding ElementName=ListBox, Path=SelectedItem.Product.Name}/>
</Application.Resources>