Warehouse.xaml 1.7 KB

123456789101112131415161718
  1. <Window x:Class="Test.Warehouse"
  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="Warehouse" Height="450" Width="450" WindowStyle="None" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" Icon="Images/beauty_logo.ico">
  9. <Grid>
  10. <StackPanel HorizontalAlignment="Left" Height="349" Margin="10,57,0,0" VerticalAlignment="Top" Width="430" Background="#FFE1E4FF"/>
  11. <Button Content="Назад" HorizontalAlignment="Center" VerticalAlignment="Center" Width="113" Height="30" Margin="10,410,327,10" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
  12. <DataGrid HorizontalAlignment="Left" Height="263" Margin="24,118,0,0" VerticalAlignment="Top" Width="400"/>
  13. <Label Content="Склад" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="34" Margin="167,3,174,393" Width="109" Height="54"/>
  14. <Label Content="Поиск" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="24,57,317,360" Width="109" Height="33"/>
  15. <TextBox HorizontalAlignment="Center" Height="23" TextWrapping="Wrap" VerticalAlignment="Center" Width="180" Foreground="Black" BorderBrush="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" VerticalContentAlignment="Bottom" Margin="24,90,246,337"/>
  16. </Grid>
  17. </Window>