Created
April 18, 2013 13:23
-
-
Save ericsk/5412644 to your computer and use it in GitHub Desktop.
顯示訊息的 ItemTemplate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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