-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNeck_Selection.xaml
22 lines (20 loc) · 1.46 KB
/
Neck_Selection.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Window x:Class="Kitness1.Neck_Selection"
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:Kitness1"
mc:Ignorable="d"
Title="KITNESS" Height="576" Width="1024">
<Grid>
<Image Margin="-6,-30,-0.4,0.4" Source="background3.jpg" Stretch="Fill"/>
<Button x:Name="neck1" HorizontalAlignment="Left" Margin="164,122,0,0" VerticalAlignment="Top" Width="662" Height="90" FontSize="35" FontWeight="Bold" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" Click="neck1_Click">
<Image Width="662" Height="90" Source="neck1.png" Stretch="Fill" />
</Button>
<Button x:Name="neck2" HorizontalAlignment="Left" Margin="164,259,0,0" VerticalAlignment="Top" Width="662" Height="90" FontSize="35" FontWeight="Bold" HorizontalContentAlignment="Left" Click="neck2_Click">
<Image Width="662" Height="90" Source="neck2.png" Stretch="Fill"/>
</Button>
<Button x:Name="btBack" Content="돌아가기" HorizontalAlignment="Left" Height="65" Margin="940,475,0,0" VerticalAlignment="Top" Width="65" FontSize="12" FontFamily="Segoe UI Black" Click="btBack_Click" Background="{x:Null}" BorderBrush="{x:Null}"/>
<Image Margin="940,475,17.6,11.4" Source="return.png" Stretch="Fill"/>
</Grid>
</Window>