8,757
社区成员
发帖
与我相关
我的任务
分享
<Grid x:Name="LayoutRoot">
<ListBox x:Name="lbMain" ItemTemplate="{StaticResource PersonTemplate}" ItemsSource="{Binding Person.Collection}"/>
</Grid>
<DataTemplate x:Key="PersonTemplate">
<TextBlock Text="{Binding Name}"/>
<TextBlock Text="{Binding Age}"/>
<TextBlock Text="{Binding Addr}"/>
</DataTemplate>
<Grid x:Name="LayoutRoot">
<ListBox x:Name="lbMain" ItemTemplate="{StaticResource PersonTemplate}" ItemsSource="{Binding Person.Collection}"/>
</Grid>
<DataTemplate x:Key="PersonTemplate">
<TextBlock Text="{Binding Name}"/>
<TextBlock Text="{Binding Age}"/>
<TextBlock Text="{Binding Addr}"/>
</DataTemplate>