<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Blog Post List" Height="300" Width="300"> <Grid> <ListBox ItemsSource="Binding BlogPosts"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel> <TextBlock Text="Binding Title" FontWeight="Bold" /> <TextBlock Text="Binding Content" /> </StackPanel> </DataTemplate> </ListBox.ItemTemplate> </ListBox> </Grid> </Window>
The ecosystem is split generally into two versions: cshtml5
public int Id get; set; public string Title get; set; public string Content get; set; public DateTime CreatedDate get; set; <Window xmlns="http://schemas