Skip to content

Instantly share code, notes, and snippets.

@ericsk
Created April 18, 2013 13:23
Show Gist options
  • Select an option

  • Save ericsk/5412644 to your computer and use it in GitHub Desktop.

Select an option

Save ericsk/5412644 to your computer and use it in GitHub Desktop.
顯示訊息的 ItemTemplate
<ListView x:Name="MyListView">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Width="75" Height="75" Source="{Binding AvatarUrl}" />
<StackPanel Orientation="Vertical" Margin="5,0">
<TextBlock Text="{Binding Name}" FontSize="24" FontWeight="Bold"/>
<TextBlock Text="{Binding Message}" TextWrapping="Wrap" />
<TextBlock Text="{Binding PostTime}" Foreground="Gray"/>
</StackPanel>
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment