MenuWindow.xaml 1.7 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="CopyCenter.MenuWindow"
  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:CopyCenter"
  7. mc:Ignorable="d"
  8. Title="Меню" Height="325" Width="730">
  9. <Grid Margin="0,0,2,0">
  10. <Grid.Background>
  11. <ImageBrush ImageSource="04e31393e803da57d190cf03e6fb0090.jpg" />
  12. </Grid.Background>
  13. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Bottom">
  14. <Button Content="Клиенты" Width="120" Height="30" Margin="25,0,30,35" Background="DarkOrange" FontSize="14" FontFamily="Century Gothic" Foreground="White" />
  15. <Button Content="Карты" Width="120" Height="30" Margin="5,0,30,35" Background="DarkOrange" FontSize="14" FontFamily="Century Gothic" Foreground="White"/>
  16. <Button Content="Заказы" Width="120" Height="30" Margin="5,0,30,35" Background="DarkOrange" FontSize="14" FontFamily="Century Gothic" Foreground="White"/>
  17. <Button Content="Услуги" Width="120" Height="30" Margin="5,0,30,35" Background="DarkOrange" FontSize="14" FontFamily="Century Gothic" Foreground="White"/>
  18. </StackPanel>
  19. <Button Content="" HorizontalAlignment="Right" Margin="5" VerticalAlignment="Top" Width="45" Click="Button_Click" Height="40">
  20. <Button.Background>
  21. <ImageBrush ImageSource="exit_PNG29.png"/>
  22. </Button.Background>
  23. </Button>
  24. </Grid>
  25. </Window>