pgList.xaml 1.0 KB

123456789101112131415161718192021222324252627
  1. <Page x:Class="Test.pgList"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Test"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="pgList">
  10. <Page.Resources>
  11. <DataTemplate x:Key="dtProdout">
  12. <StackPanel>
  13. <TextBlock Text="{Binding Name}"></TextBlock>
  14. </StackPanel>
  15. </DataTemplate>
  16. </Page.Resources>
  17. <Grid>
  18. <ListBox Name="lbProd" ItemTemplate="{StaticResource dtProdout}" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
  19. <ListBox.ItemsPanel>
  20. <ItemsPanelTemplate>
  21. <WrapPanel Orientation="Horizontal"></WrapPanel>
  22. </ItemsPanelTemplate>
  23. </ListBox.ItemsPanel>
  24. </ListBox>
  25. </Grid>
  26. </Page>