This document profile is for Mitsuba Yu, the CEO of silkyfeel LLC. Mitsuba is a Microsoft MVP for Windows Development, and also works as a UX Designer, Interaction Developer, and Photographer. Their hobby is photography, often taking photos for the cover of their keynote presentations.
56. public partial class ListViewDataContext
{
public ObservableCollection<ListViewItemsProperty> ListViewItemsProperties = new
ObservableCollection<ListViewItemsProperty>();
public ListViewDataContext()
{
ListViewItemsProperties.Add(new ListViewItemsProperty() {
Title = "ほげ1",
ImageUri = new Uri("http://hoge.com/fuga.png")
});
ListViewItemsProperties.Add(new ListViewItemsProperty() {
Title = "ほげ2",
ImageUri = new Uri("http://hoge.com/fuga.png")
});
ListViewItemsProperties.Add(new ListViewItemsProperty() {
Title = "ほげ3",
ImageUri = new Uri("http://hoge.com/fuga.png")
});
}