123456789101112131415161718 |
- <Window x:Class="Test.Warehouse"
- 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="Warehouse" Height="450" Width="450" WindowStyle="None" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" Icon="Images/beauty_logo.ico">
- <Grid>
- <StackPanel HorizontalAlignment="Left" Height="349" Margin="10,57,0,0" VerticalAlignment="Top" Width="430" Background="#FFE1E4FF"/>
- <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"/>
- <DataGrid HorizontalAlignment="Left" Height="263" Margin="24,118,0,0" VerticalAlignment="Top" Width="400"/>
- <Label Content="Склад" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="34" Margin="167,3,174,393" Width="109" Height="54"/>
- <Label Content="Поиск" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="24,57,317,360" Width="109" Height="33"/>
- <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"/>
- </Grid>
- </Window>
|