Skip to content

Instantly share code, notes, and snippets.

@mabster
Created June 21, 2012 03:27
Show Gist options
  • Save mabster/2963641 to your computer and use it in GitHub Desktop.
Save mabster/2963641 to your computer and use it in GitHub Desktop.
// in MainWindow.xaml:
<Grid>
<ListBox ItemsSource="{Binding Items}" />
</Grid>
// in MainWindow.xaml.cs
public MainWindow()
{
InitializeComponent();
this.DataContext = new
{
Items = new[]
{
"The quick",
"brown fox",
"jumps over",
"the lazy dog"
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment