AddServices.xaml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Window x:Class="Test.AddServices"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Test"
  7. mc:Ignorable="d"
  8. Title="AddServices" Height="450" Width="400" WindowStyle="None" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" Icon="Images/beauty_logo.ico">
  9. <Grid>
  10. <StackPanel HorizontalAlignment="Left" Height="277" Margin="56,69,0,0" VerticalAlignment="Top" Width="289" Background="#FFE1E4FF"/>
  11. <Label Content="Добавление услуги" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="34" Margin="42,10,46,386" Width="312" Height="54"/>
  12. <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"/>
  13. <Label Content="Название" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" Width="110" Margin="84,84,206,332"/>
  14. <Label Content="Тип" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" Width="110" Margin="84,168,206,250"/>
  15. <Label Content="Клиент (необязательно)" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" Width="234" Margin="84,252,82,166"/>
  16. <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"/>
  17. <ComboBox HorizontalAlignment="Left" Margin="84,284,0,0" VerticalAlignment="Top" Width="234" BorderBrush="White" Height="26">
  18. <ComboBox.Background>
  19. <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
  20. <GradientStop Color="#FFF0F0F0" Offset="0"/>
  21. <GradientStop Color="#FFE1E4FF" Offset="1"/>
  22. </LinearGradientBrush>
  23. </ComboBox.Background>
  24. </ComboBox>
  25. <ComboBox HorizontalAlignment="Left" Margin="84,200,0,0" VerticalAlignment="Top" Width="234" BorderBrush="White" Height="26">
  26. <ComboBox.Background>
  27. <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
  28. <GradientStop Color="#FFF0F0F0" Offset="0"/>
  29. <GradientStop Color="#FFE1E4FF" Offset="1"/>
  30. </LinearGradientBrush>
  31. </ComboBox.Background>
  32. </ComboBox>
  33. <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"/>
  34. </Grid>
  35. </Window>