123456789101112131415161718192021222324252627282930313233 |
- <Window x:Class="WpfAppProduct.WindowsBasket"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:WpfAppProduct"
- mc:Ignorable="d"
- Title="WindowsBasket" Height="450" Width="800">
- <Grid>
- <ListView Name="LvPr" Grid.Row="1" ScrollViewer.HorizontalScrollBarVisibility="Disabled" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch">
- <ListView.ItemTemplate>
- <DataTemplate>
- <Border BorderThickness="1" BorderBrush="Black" CornerRadius="1">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="2*"/>
- </Grid.ColumnDefinitions>
- <StackPanel Orientation="Horizontal">
- <Image Width="150"/>
- </StackPanel>
- <StackPanel Grid.Column="1">
- <TextBlock Text="{Binding Product.ProductName}" FontSize="14" FontFamily="Arial"/>
- <TextBlock Text="{Binding Product.Desc}" FontSize="14" FontFamily="Arial"/>
- <TextBlock Text="{Binding Product.Price}" FontSize="14" FontFamily="Arial"/>
- </StackPanel>
- </Grid>
- </Border>
- </DataTemplate>
- </ListView.ItemTemplate>
- </ListView>
- </Grid>
- </Window>
|