ServicesWindow.xaml 3.2 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="Test.ServicesWindow"
  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="ServicesWindow" Height="650" Width="1000" WindowStyle="None" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" Icon="Images/beauty_logo.ico">
  9. <Grid>
  10. <StackPanel HorizontalAlignment="Left" Height="522" Margin="0,72,0,0" VerticalAlignment="Top" Width="1000" Background="#FFE1E4FF"/>
  11. <DataGrid HorizontalAlignment="Left" Height="398" Margin="10,146,0,0" VerticalAlignment="Top" Width="453"/>
  12. <Label Content="Клиенты" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="36" Margin="154,18,694,578" Width="152" Height="54"/>
  13. <Button Content="Назад" HorizontalAlignment="Center" VerticalAlignment="Center" Width="113" Height="30" Margin="10,610,877,10" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
  14. <Button Content="Добавить клиента" HorizontalAlignment="Center" VerticalAlignment="Center" Width="216" Height="30" Margin="124,549,660,71" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
  15. <DataGrid HorizontalAlignment="Left" Height="398" Margin="482,146,0,0" VerticalAlignment="Top" Width="508"/>
  16. <Label Content="Услуги" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="36" Margin="668,18,209,578" Width="123" Height="54"/>
  17. <Button Content="Добавить услугу" HorizontalAlignment="Center" VerticalAlignment="Center" Width="216" Height="30" Margin="614,549,170,71" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
  18. <Button Content="Выход" HorizontalAlignment="Center" VerticalAlignment="Center" Width="113" Height="30" Margin="877,10,10,610" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
  19. <TextBox HorizontalAlignment="Center" Height="29" TextWrapping="Wrap" VerticalAlignment="Center" Width="236" Foreground="Black" BorderBrush="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" VerticalContentAlignment="Bottom" Margin="10,111,754,510"/>
  20. <Label Content="Поиск" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="24" Margin="10,72,914,539"/>
  21. <TextBox HorizontalAlignment="Center" Height="29" TextWrapping="Wrap" VerticalAlignment="Center" Width="236" Foreground="Black" BorderBrush="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" VerticalContentAlignment="Bottom" Margin="482,111,282,510"/>
  22. <Label Content="Поиск" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="24" Margin="482,72,442,539"/>
  23. </Grid>
  24. </Window>