- , Selector. ObservableCollection, , , . /struct .
public class Info
{
public string Name { get; set; }
}
MyList = new ObservableCollection<Info>(new List<Info> { new Info { Name = "Hello World" }, new Info { Name = "Hello World" }, new Info { Name = "Hello World" } });
.
<ListBox ItemsSource="{Binding MyList}" DisplayMemberPath="Name" />