This repository has been archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml
52 lines (51 loc) · 3.05 KB
/
MainWindow.xaml
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
<Controls:MetroWindow x:Class="GTA5_Casino_Helper.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Controls="http://metro.mahapps.com/winfx/xaml/controls"
Title="GTA 5 Casino Helper"
Height="180"
Width="600" ResizeMode="CanMinimize" WindowStartupLocation="CenterScreen"
Loaded="MainWindow_Loaded"
AllowsTransparency="True"
>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="8*"/>
<RowDefinition Height="2*"/>
</Grid.RowDefinitions>
<Grid Grid.Row="0">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Button x:Name="btn_EarnMoneyByHB" FontSize="14" Grid.Column="0" Margin="10,5" Content="Earn money By Horse Betting
(Ctrl+ NumPad2)" IsEnabled="False" Click="btn_EarnMoneyByHB_Click"/>
<Grid Grid.Column="1" Margin="10,5" >
<Grid.RowDefinitions>
<RowDefinition Height="2.4*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Button x:Name="btn_EarnMoneyByRR" FontSize="14" Grid.Row="0" Content="Earn Money By Russian Roulette
(Ctrl+ NumPad3)" IsEnabled="False" Click="btn_EarnMoneyByRR_Click" />
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Label VerticalAlignment="Center" FontSize="14" HorizontalAlignment="Center" Grid.Column="0">Number</Label>
<Label VerticalAlignment="Center" FontSize="14" HorizontalAlignment="Center" Grid.Column="1">Amount</Label>
</Grid>
<Grid Grid.Row="2" Margin="0,0,0,-5">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<ComboBox x:Name="cb_RR_Number" FontSize="14" Grid.Column="0" HorizontalAlignment="Center" VerticalAlignment="Top" Width="120" SelectionChanged="cb_RR_Number_SelectionChanged"/>
<ComboBox x:Name="cb_RR_Amount" FontSize="14" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Top" Width="120" SelectionChanged="cb_RR_Amount_SelectionChanged" />
</Grid>
</Grid>
</Grid>
<Grid Grid.Row="1">
<TextBox x:Name="StatusBar" FontSize="14" Margin="10,0" IsEnabled="True" Text="Status:Wait for the game to open. (click it to check) or (Ctrl+ NumPad1)" VerticalAlignment="Center" PreviewMouseDown="StatusBar_PreviewMouseDown" />
</Grid>
</Grid>
</Controls:MetroWindow>