Skip to content

Instantly share code, notes, and snippets.

@andersonimes
Created October 25, 2010 19:31
Show Gist options
  • Save andersonimes/645567 to your computer and use it in GitHub Desktop.
Save andersonimes/645567 to your computer and use it in GitHub Desktop.
Testing posting XAML
<ItemsControl ItemsSource="{Binding StuffThatIsCool}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding WhyCool}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
public void DoStuffThatsCool()
{
foreach(var coolThing in StuffThatIsCool)
{
coolThing.DoCoolStuff();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment