1234567891011121314151617181920212223242526 |
- <Window x:Class="Test.ServicesWindow"
- 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="ServicesWindow" Height="650" Width="1000" WindowStyle="None" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" Icon="Images/beauty_logo.ico">
- <Grid>
- <StackPanel HorizontalAlignment="Left" Height="522" Margin="0,72,0,0" VerticalAlignment="Top" Width="1000" Background="#FFE1E4FF"/>
- <DataGrid HorizontalAlignment="Left" Height="398" Margin="10,146,0,0" VerticalAlignment="Top" Width="453"/>
- <Label Content="Клиенты" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="36" Margin="154,18,694,578" Width="152" Height="54"/>
- <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"/>
- <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"/>
- <DataGrid HorizontalAlignment="Left" Height="398" Margin="482,146,0,0" VerticalAlignment="Top" Width="508"/>
- <Label Content="Услуги" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="36" Margin="668,18,209,578" Width="123" Height="54"/>
- <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"/>
- <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"/>
- <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"/>
- <Label Content="Поиск" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="24" Margin="10,72,914,539"/>
- <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"/>
- <Label Content="Поиск" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="24" Margin="482,72,442,539"/>
- </Grid>
- </Window>
|