12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <Page x:Class="SneakersSkakunov.Add"
- 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:SneakersSkakunov"
- mc:Ignorable="d"
- d:DesignHeight="720" d:DesignWidth="1080"
- Title="Add">
- <Grid Background="#f5f5f5">
- <Grid.RowDefinitions>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="60"></RowDefinition>
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0">
- <StackPanel>
- <TextBlock Background="#0000" HorizontalAlignment="Center" FontSize="32" FontWeight="Bold" Foreground="#4f4f4f">Добавление в каталог</TextBlock>
- <TextBlock Foreground="#4f4f4f" Margin="10,0,10,0">Выберите модель</TextBlock>
- <ComboBox Name="Brands" Margin="10,5,10,0" Foreground="#4f4f4f"></ComboBox>
- <TextBlock Foreground="#4f4f4f" Margin="10,0,10,0">Введите цвет</TextBlock>
- <TextBox Name="Clrs" Margin="10,5,10,0" Foreground="#4f4f4f"></TextBox>
- <TextBlock Foreground="#4f4f4f" Margin="10,0,10,0">Введите цену</TextBlock>
- <TextBox Name="Prices" Margin="10,5,10,0" Foreground="#4f4f4f"></TextBox>
- <TextBlock Foreground="#4f4f4f" Margin="10,0,10,0">Введите размер</TextBlock>
- <TextBox Name="Sizes" Margin="10,5,10,0" Foreground="#4f4f4f"></TextBox>
- </StackPanel>
- </StackPanel>
- <StackPanel Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Left" Orientation="Horizontal" Margin="10">
- <Border BorderThickness="1" CornerRadius="4" BorderBrush="#292929" Background="White" Width="90" Height="20">
- <Button Background="#0000" BorderBrush="#0000" Foreground="#292929" Content="Вернуться" Click="Revert"></Button>
- </Border>
- <Border BorderThickness="1" CornerRadius="4" BorderBrush="#292929" Background="White" Width="90" Height="20" Margin="10,0,0,0">
- <Button Background="#0000" BorderBrush="#0000" Foreground="#292929" Content="Добавить" Name="BtnAdd" Click="BtnAdd_Click" ></Button>
- </Border>
- </StackPanel>
- </Grid>
- </Page>
|