12345678910111213141516171819202122232425262728293031323334353637 |
- <Window x:Class="Test.AddServices"
- 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:Test"
- mc:Ignorable="d"
- Title="AddServices" Height="450" Width="400" WindowStyle="None" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" Icon="Images/beauty_logo.ico">
- <Grid>
- <StackPanel HorizontalAlignment="Left" Height="277" Margin="56,69,0,0" VerticalAlignment="Top" Width="289" Background="#FFE1E4FF"/>
- <Label Content="Добавление услуги" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="34" Margin="42,10,46,386" Width="312" Height="54"/>
- <TextBox HorizontalAlignment="Center" Height="26" TextWrapping="Wrap" VerticalAlignment="Center" Width="234" Foreground="Black" BorderBrush="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" VerticalContentAlignment="Bottom" Margin="84,118,82,306"/>
- <Label Content="Название" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" Width="110" Margin="84,84,206,332"/>
- <Label Content="Тип" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" Width="110" Margin="84,168,206,250"/>
- <Label Content="Клиент (необязательно)" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" Width="234" Margin="84,252,82,166"/>
- <Button Content="Добавить" HorizontalAlignment="Center" VerticalAlignment="Center" Width="113" Height="30" Margin="143,368,144,52" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
- <ComboBox HorizontalAlignment="Left" Margin="84,284,0,0" VerticalAlignment="Top" Width="234" BorderBrush="White" Height="26">
- <ComboBox.Background>
- <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
- <GradientStop Color="#FFF0F0F0" Offset="0"/>
- <GradientStop Color="#FFE1E4FF" Offset="1"/>
- </LinearGradientBrush>
- </ComboBox.Background>
- </ComboBox>
- <ComboBox HorizontalAlignment="Left" Margin="84,200,0,0" VerticalAlignment="Top" Width="234" BorderBrush="White" Height="26">
- <ComboBox.Background>
- <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
- <GradientStop Color="#FFF0F0F0" Offset="0"/>
- <GradientStop Color="#FFE1E4FF" Offset="1"/>
- </LinearGradientBrush>
- </ComboBox.Background>
- </ComboBox>
- <Button Content="Назад" HorizontalAlignment="Center" VerticalAlignment="Center" Width="96" Height="26" Margin="151,403,153,21" BorderBrush="#FFFF4A6D" Background="White" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="16"/>
- </Grid>
- </Window>
|