You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GTAOnlineCasinoHelper/GTAOnlineCasinoHelper/Views/AutoLobby.xaml

87 lines
3.4 KiB

<?xml version="1.0" encoding="UTF-8"?>
<UserControl x:Class="GTAOnlineCasinoHelper.Views.AutoLobby"
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:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
xmlns:Controls="http://metro.mahapps.com/winfx/xaml/controls"
xmlns:GTAOnlineCasinoHelper="clr-namespace:GTAOnlineCasinoHelper">
<UserControl.Resources>
<Thickness x:Key="ControlMargin">5</Thickness>
</UserControl.Resources>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<StackPanel Grid.Column="0"
Grid.Row="0"
HorizontalAlignment="Center">
<Button x:Name="Button_AutoLobby"
Margin="5"
Content="Auto Solo Lobby"
Click="Button_AutoLobby_Click"/>
<Button x:Name="Button_Suspend"
Margin="5"
Content="Suspend"
Click="Button_Suspend_Click"/>
<Button x:Name="Button_Resume"
Margin="5"
Content="Resume"
Click="Button_Resume_Click"/>
</StackPanel>
<StackPanel Grid.Column="0"
Grid.Row="1"
HorizontalAlignment="Center">
<TextBlock x:Name="TextBlock_Status"
TextAlignment="Center"
Margin="5"
FontSize="32" />
</StackPanel>
<StackPanel Grid.Column="0"
Grid.Row="2"
HorizontalAlignment="Center"
VerticalAlignment="Bottom">
<CheckBox x:Name="CheckBox_OverrideProcessName"
Margin="5"
Content="Override Process Name"
IsChecked="False"
Checked="CheckBox_OverrideProcessName_Checked"
Unchecked="CheckBox_OverrideProcessName_Unchecked" />
<TextBox x:Name="TextBox_ProcessName"
Margin="5"
Visibility="Collapsed"/>
<CheckBox x:Name="CheckBox_OverrideTimeout"
Margin="5"
Content="Override Timeout"
IsChecked="False"
Checked="CheckBox_OverrideTimeout_Checked"
Unchecked="CheckBox_OverrideTimeout_Unchecked" />
<TextBox x:Name="TextBox_TimeoutSeconds"
Margin="5"
Visibility="Collapsed"/>
</StackPanel>
</Grid>
</UserControl>
<!--<ContentView xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="GTAOnlineCasinoHelper.Views.LuckyWheel">
<ContentView.Content>
<StackLayout>
<Label Text="Hello Xamarin.Forms!" />
</StackLayout>
</ContentView.Content>
</ContentView>-->