17,747
社区成员




<ListView Name="WarehousingImagesView" Grid.Row="1" Visibility="Visible">
<ListView.View>
<l:ImageView/>
</ListView.View>
<ListView.ItemsSource>
<Binding Path="WarehousingImagesList"/>
</ListView.ItemsSource>
</ListView>
<DataTemplate>
<Border>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Image Grid.Row="0" Margin="3" Height="200">
<Image.Source>
<BitmapImage DecodePixelHeight="200" UriSource="{Binding Path=Photo}">
</BitmapImage>
</Image.Source>
</Image>
<TextBlock Grid.Row="1" Text="{Binding Path=Name}"/>
</Grid>
</Border>
</DataTemplate>