-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathShop.xaml
More file actions
64 lines (64 loc) · 4.26 KB
/
Shop.xaml
File metadata and controls
64 lines (64 loc) · 4.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Window x:Class="CheckShopApp.Shop"
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:CheckShopApp"
mc:Ignorable="d"
Title="MainWindow"
Height="359"
Width="580"
RenderOptions.BitmapScalingMode="HighQuality"
ResizeMode="CanMinimize"
AllowsTransparency="True"
WindowStyle="None"
Background="Transparent"
WindowStartupLocation="CenterScreen"
WindowState="Normal" MouseDown="Window_MouseDown"
>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="328*"/>
<ColumnDefinition Width="23*"/>
<ColumnDefinition Width="26*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="29*"/>
<RowDefinition Height="330*"/>
</Grid.RowDefinitions>
<Border Background="#16171B"
CornerRadius="6,6,0,0" Grid.ColumnSpan="3"/>
<Label Content="Valorant shop checker by d1ret" Grid.ColumnSpan="4" Margin="0,4,184,-4" Foreground="White" FontFamily="Quicksand" FontWeight="Bold" FontSize="8"/>
<Border
Background="#191A1F" Grid.Row="1" Grid.ColumnSpan="3">
<Grid>
<Border CornerRadius="11" Background="#FF1F1F23" Height="90" Margin="0,0,294,0" VerticalAlignment="Center" HorizontalAlignment="Right" Width="258">
<Grid Margin="0,0,0,10">
<Image x:Name="imgTest1" Margin="12,8,12,8" />
<Label x:Name="textTest1" Content="" HorizontalAlignment="Left" Margin="3,57,0,0" VerticalAlignment="Top" Foreground="White" Height="26" Width="56" FontSize="14" FontFamily="Quicksand" FontWeight="Bold"/>
</Grid>
</Border>
<Border CornerRadius="11" Background="#FF1F1F23" Height="90" Margin="0,0,21,0" VerticalAlignment="Center" HorizontalAlignment="Right" Width="258">
<Grid Margin="0,0,0,10">
<Image x:Name="imgTest2" Margin="12,8,12,8"/>
<Label x:Name="textTest2" Content="" HorizontalAlignment="Left" Margin="4,58,0,0" VerticalAlignment="Top" Foreground="White" Height="26" Width="56" FontSize="14" FontFamily="Quicksand" FontWeight="Bold"/>
</Grid>
</Border>
<Border CornerRadius="11" Background="#FF1F1F23" Margin="0,10,21,0" Height="90" VerticalAlignment="Top" HorizontalAlignment="Right" Width="258">
<Grid Margin="0,10,0,0">
<Image x:Name="imgTest3" Margin="12,8,12,8"/>
<Label x:Name="textTest3" Content="" HorizontalAlignment="Left" Margin="3,54,0,0" VerticalAlignment="Top" Foreground="White" Height="26" Width="56" FontSize="14" FontFamily="Quicksand" FontWeight="Bold"/>
</Grid>
</Border>
<Border CornerRadius="11" Background="#FF1F1F23" Height="90" Margin="0,10,294,0" VerticalAlignment="Top" HorizontalAlignment="Right" Width="258">
<Grid Margin="0,10,0,0">
<Image x:Name="imgTest4" Margin="12,8,12,8"/>
<Label x:Name="textTest4" Content="" HorizontalAlignment="Left" Margin="3,54,0,0" VerticalAlignment="Top" Foreground="White" Height="26" Width="56" FontSize="14" FontFamily="Quicksand" FontWeight="Bold"/>
</Grid>
</Border>
</Grid>
</Border>
<Button x:Name="xButton" Content="❌" Margin="2,4,6,4" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="White" Style="{DynamicResource RightButtonStyle}" Cursor="Hand" MouseEnter="X_Enter" MouseLeave="X_Leave" Grid.Column="2" Click="xButton_Click"/>
<Button x:Name="minusButton" Content="➖" Margin="3,4,1,4" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="White" Style="{DynamicResource RightButtonStyle}" Cursor="Hand" MouseEnter="_Enter" MouseLeave="_Leave" Grid.Column="1" Click="minusButton_Click"/>
</Grid>
</Window>