Window1.xaml 1.8 KB

123456789101112131415161718192021222324252627282930
  1. <Window x:Class="KFC.windows.Window1"
  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:KFC.windows"
  7. mc:Ignorable="d"
  8. Title="Window1" Height="250" Width="400" MinWidth="2" Background="#FFAAD8F7" WindowStyle="None" WindowStartupLocation="CenterScreen">
  9. <Grid>
  10. <Button x:Name="here" Content="" HorizontalAlignment="Left" Margin="85,77,0,0" VerticalAlignment="Top" Width="100" Height="100" Foreground="{x:Null}" Style="{DynamicResource ButtonKFC}" Click="here_Click">
  11. <Button.BorderBrush>
  12. <SolidColorBrush Color="Black" Opacity="0.6"/>
  13. </Button.BorderBrush>
  14. <Button.Background>
  15. <ImageBrush ImageSource="i (2).jpg" Stretch="UniformToFill"/>
  16. </Button.Background>
  17. </Button>
  18. <Button x:Name="withu" Content="" HorizontalAlignment="Left" Margin="240,77,0,0" VerticalAlignment="Top" Width="100" Height="100" Foreground="{x:Null}" Click="withu_Click" Style="{DynamicResource ButtonKFC2}">
  19. <Button.BorderBrush>
  20. <SolidColorBrush Color="Black" Opacity="0.6"/>
  21. </Button.BorderBrush>
  22. <Button.Background>
  23. <ImageBrush ImageSource="1528144619.jpg" Stretch="UniformToFill"/>
  24. </Button.Background>
  25. </Button>
  26. <Label Content="Здесь" HorizontalAlignment="Left" Margin="112,182,0,0" VerticalAlignment="Top" Width="46" FontSize="14"/>
  27. <Label Content="С собой" HorizontalAlignment="Left" Margin="261,182,0,0" VerticalAlignment="Top" Width="62" FontSize="14"/>
  28. </Grid>
  29. </Window>