MenuWindow.xaml 2.0 KB

123456789101112131415161718192021222324252627282930
  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. Icon="200x200bb.jpg"
  9. Title="Меню" Height="325" Width="730" WindowStartupLocation="CenterScreen">
  10. <Grid Margin="0,0,2,0">
  11. <Grid.Background>
  12. <ImageBrush ImageSource="i39C1W5IB.jpg"/>
  13. </Grid.Background>
  14. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="38,0,42,21">
  15. <Button Content="Клиенты" Width="120" Height="30" Margin="25,0,30,35" Background="#FF138DE2" FontSize="14" FontFamily="Century Gothic" Foreground="White" Click="Clients"/>
  16. <Button Content="Карты" Width="120" Height="30" Margin="5,0,30,35" Background="#FF138DE9" FontSize="14" FontFamily="Century Gothic" Foreground="White" Click="Cards"/>
  17. <Button Content="Заказы" Width="120" Height="30" Margin="5,0,30,35" Background="#FF138DE2" FontSize="14" FontFamily="Century Gothic" Foreground="White" Click="Orders"/>
  18. <Button Content="Услуги" Width="120" Height="30" Margin="5,0,30,35" Background="#FF138DE2" FontSize="14" FontFamily="Century Gothic" Foreground="White" Click="Service"/>
  19. </StackPanel>
  20. <Button Content="" HorizontalAlignment="Right" Margin="0,5,5,0" VerticalAlignment="Top" Width="45" Click="Exit_Click" Height="41">
  21. <Button.Background>
  22. <ImageBrush ImageSource="logging-out-2355227_1280.png"/>
  23. </Button.Background>
  24. </Button>
  25. <Image Margin="149,55,159,168" Source="7bdd0639f0f150dcbf64d929e4[1].png" Stretch="Fill" RenderTransformOrigin="0.794,0.437"/>
  26. </Grid>
  27. </Window>