123456789101112131415161718192021222324252627282930 |
- <Window x:Class="KFC.windows.Window1"
- 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:KFC.windows"
- mc:Ignorable="d"
- Title="Window1" Height="250" Width="400" MinWidth="2" Background="#FFAAD8F7" WindowStyle="None" WindowStartupLocation="CenterScreen">
- <Grid>
- <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">
- <Button.BorderBrush>
- <SolidColorBrush Color="Black" Opacity="0.6"/>
- </Button.BorderBrush>
- <Button.Background>
- <ImageBrush ImageSource="i (2).jpg" Stretch="UniformToFill"/>
- </Button.Background>
- </Button>
- <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}">
- <Button.BorderBrush>
- <SolidColorBrush Color="Black" Opacity="0.6"/>
- </Button.BorderBrush>
- <Button.Background>
- <ImageBrush ImageSource="1528144619.jpg" Stretch="UniformToFill"/>
- </Button.Background>
- </Button>
- <Label Content="Здесь" HorizontalAlignment="Left" Margin="112,182,0,0" VerticalAlignment="Top" Width="46" FontSize="14"/>
- <Label Content="С собой" HorizontalAlignment="Left" Margin="261,182,0,0" VerticalAlignment="Top" Width="62" FontSize="14"/>
- </Grid>
- </Window>
|