Product.xaml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Page x:Class="WPF01.pages.Product"
  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:WPF01.pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="600"
  9. Title="Product">
  10. <Grid x:Name="ProductGrid">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="1*"/>
  13. <RowDefinition Height="1*"/>
  14. </Grid.RowDefinitions>
  15. <Grid.ColumnDefinitions>
  16. <ColumnDefinition Width="1*"/>
  17. <ColumnDefinition Width="1*"/>
  18. <ColumnDefinition Width="1*"/>
  19. </Grid.ColumnDefinitions>
  20. <Border BorderBrush="Gray" BorderThickness="1" Margin="10" Background="White" Grid.Row="1">
  21. <StackPanel>
  22. <Image Source="/WPF01;component/Товары автосервиса/E9308929.jpg" Height="129" Margin="20,10,20,0" />
  23. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,5,0,0">
  24. <RadioButton Width="14" Height="14" />
  25. <RadioButton Width="14" Height="14" />
  26. <RadioButton Width="14" Height="14" />
  27. <RadioButton Width="14" Height="14" />
  28. </StackPanel>
  29. <Label Content="Наименование товара" FontSize="10" HorizontalContentAlignment="Center" Foreground="#FF496F95" Padding="0" Margin="0" />
  30. <Label Content="1500 рублей" Padding="0" Margin="0" FontSize="10" HorizontalContentAlignment="Center" Foreground="#FF496F95"/>
  31. <Label Content="неактивен" Foreground="#FF496F95" Padding="0" FontSize="8" HorizontalContentAlignment="Center"/>
  32. </StackPanel>
  33. </Border>
  34. </Grid>
  35. </Page>