ServiseWin.xaml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <Window x:Class="Final.Win.ServiseWin"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Final.Win"
  7. mc:Ignorable="d"
  8. Title="ServiseWin" Height="450" Width="800">
  9. <Grid>
  10. <ListView x:Name="ListProduct" Margin="0, 40, 0, 0">
  11. <ListView.ItemTemplate>
  12. <DataTemplate>
  13. <Grid>
  14. <Grid.ColumnDefinitions>
  15. <ColumnDefinition Width="*"/>
  16. <ColumnDefinition/>
  17. </Grid.ColumnDefinitions>
  18. <Image Height="100" Width="100" Source="{Binding PathImage}" Margin="5"/>
  19. </Grid>
  20. </DataTemplate>
  21. </ListView.ItemTemplate>
  22. </ListView>
  23. </Grid>
  24. </Window>