12345678910111213141516171819202122232425262728293031323334353637 |
- <Page x:Class="WPF01.pages.Product"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:WPF01.pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="600"
- Title="Product">
- <Grid x:Name="ProductGrid">
- <Grid.RowDefinitions>
- <RowDefinition Height="1*"/>
- <RowDefinition Height="1*"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="1*"/>
- <ColumnDefinition Width="1*"/>
- <ColumnDefinition Width="1*"/>
- </Grid.ColumnDefinitions>
- <Border BorderBrush="Gray" BorderThickness="1" Margin="10" Background="White" Grid.Row="1">
- <StackPanel>
- <Image Source="/WPF01;component/Товары автосервиса/E9308929.jpg" Height="129" Margin="20,10,20,0" />
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,5,0,0">
- <RadioButton Width="14" Height="14" />
- <RadioButton Width="14" Height="14" />
- <RadioButton Width="14" Height="14" />
- <RadioButton Width="14" Height="14" />
- </StackPanel>
- <Label Content="Наименование товара" FontSize="10" HorizontalContentAlignment="Center" Foreground="#FF496F95" Padding="0" Margin="0" />
- <Label Content="1500 рублей" Padding="0" Margin="0" FontSize="10" HorizontalContentAlignment="Center" Foreground="#FF496F95"/>
- <Label Content="неактивен" Foreground="#FF496F95" Padding="0" FontSize="8" HorizontalContentAlignment="Center"/>
- </StackPanel>
- </Border>
- </Grid>
- </Page>
|