I've created a Windows Store app based on the Grid App XAML template in Visual Studio. It binds a GridView to a collection containing groups where each group contains items where each item contains some meta-data and an image. A CollectionViewSource is used for displaying the items within the groups in the grid view. This all works fine. I then added a button for adding a new item and when clicked the item with its meta-data is displayed but not the image. Click event-handler:
private void Button_Click_1(object sender, RoutedEventArgs e)
{
SampleDataGroup sampleDataGroup = SampleDataSource.GetGroup("Group-1");
var sampleDataItem = new SampleDataItem("uniq", "Title", "Subtitle", "c:/users/christian/pictures/my_image.jpg", "Description", "Content", sampleDataGroup);
sampleDataGroup.Items.Add(sampleDataItem);
}
However, if the image is read from the projects' Assets folder and not from the Pictures folder, it works as expected. Any ideas?
