HistoryWindow.xaml 2.5 KB

123456789101112131415161718192021222324252627
  1. <Window x:Class="Test.HistoryWindow"
  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="HistoryWindow" Height="450" Width="800" 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="780" Background="#FFE1E4FF"/>
  11. <Button Content="Назад" HorizontalAlignment="Center" VerticalAlignment="Center" Width="113" Height="30" Margin="10,410,677,10" BorderBrush="White" Background="#FFFF4A6D" Foreground="White" FontFamily="Tahoma" FontSize="18"/>
  12. <DataGrid HorizontalAlignment="Left" Height="277" Margin="24,118,0,0" VerticalAlignment="Top" Width="753"/>
  13. <Label Content="История покупок и услуг" HorizontalAlignment="Center" VerticalAlignment="Top" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="34" Margin="195,3,196,0" Width="409" Height="54" HorizontalContentAlignment="Center"/>
  14. <Label Content="Поиск" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="24,57,667,360" Width="109" Height="33"/>
  15. <TextBox HorizontalAlignment="Center" Height="24" TextWrapping="Wrap" VerticalAlignment="Center" Width="180" Foreground="Black" BorderBrush="#FFFF4A6D" FontFamily="Tahoma" FontSize="18" VerticalContentAlignment="Bottom" Margin="24,90,596,336"/>
  16. <ComboBox HorizontalAlignment="Left" Margin="233,91,0,0" VerticalAlignment="Top" Width="201" BorderBrush="White" Height="23">
  17. <ComboBox.Background>
  18. <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
  19. <GradientStop Color="#FFF0F0F0" Offset="0"/>
  20. <GradientStop Color="#FFE1E4FF" Offset="1"/>
  21. </LinearGradientBrush>
  22. </ComboBox.Background>
  23. </ComboBox>
  24. <Label Content="Сортировка" HorizontalAlignment="Center" VerticalAlignment="Center" Background="{x:Null}" Foreground="#FFFF4A6D" FontFamily="Tahoma" FontSize="20" Margin="233,57,437,359" Width="130"/>
  25. </Grid>
  26. </Window>