私のxmlファイルは次のようになります
<people><person> <firstname>venakt</firstname> <lastname>es</lastname> <age>27</age> <Image>http://www.livetut.com/wp-content/uploads/2012/06/Logo1.png</Image> </person></people>
私のXAMLファイルは次のようになります
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<Image Source="{Binding ImageSource}" Height="120" Width="120" HorizontalAlignment="Center" VerticalAlignment="Center" Tap="textBlock1_tap" />
<TextBlock Text="{Binding UserName}" Style="{StaticResource PhoneTextSubtleStyle}" Width="100" TextAlignment="Center"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
私のxaml.csファイルに追加しました
public string Image { get { return Image; } set { Image = value; } }
XDocument loadedData = XDocument.Load("People.xml");
var data = from query in loadedData.Descendants("person")
select new Person
{
FirstName = (string)query.Element("firstname"),
LastName = (string)query.Element("lastname"),
Image= query.Element("Image").Attribute("url").Value
};
listBox.ItemsSource = data;
画像をバインドする方法を教えてもらえますか