99 lines
6.1 KiB
XML
99 lines
6.1 KiB
XML
<Window x:Class="launcher_client_win.GUI.LauncherWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
mc:Ignorable="d"
|
|
Title="DTLauncher" Width="800" Height="500" MinWidth="800" MinHeight="500" Background="#FF232328">
|
|
<Grid x:Name="MainGrid">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="10"/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition Width="10"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="10"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="8"/>
|
|
<RowDefinition/>
|
|
<RowDefinition Height="10"/>
|
|
</Grid.RowDefinitions>
|
|
<Rectangle Fill="#FF474747" Grid.Row="2" Grid.ColumnSpan="3" Margin="0,5,0,0"/>
|
|
<Grid Grid.Column="1" Grid.Row="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition Width="8"/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition Width="8"/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Button x:Name="HomeButton"
|
|
Content="Home" FontWeight="Bold" FontFamily="Unispace" FontSize="20"
|
|
Grid.Column="0" Background="Transparent" Foreground="#FF2CDA11"
|
|
BorderThickness="3" Template="{DynamicResource roundedButton}"/>
|
|
<Button x:Name="LogButton" Content="Log" FontWeight="Bold" FontFamily="Unispace" FontSize="20"
|
|
Grid.Column="2" Background="Transparent" Foreground="#FFF0F0F0"
|
|
BorderThickness="3" Template="{DynamicResource roundedButton}"/>
|
|
<Button x:Name="SettingsButton" Content="Settings" FontWeight="Bold" FontFamily="Unispace" FontSize="20"
|
|
Grid.Column="4" Background="Transparent" Foreground="#FFF0F0F0"
|
|
BorderThickness="3" Template="{DynamicResource roundedButton}"/>
|
|
|
|
</Grid>
|
|
<Grid x:Name="HomeGrid" Visibility="Visible" Grid.Row="3" Grid.Column="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="240"/>
|
|
<ColumnDefinition Width="10"/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition Width="10"/>
|
|
<ColumnDefinition Width="200"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Rectangle Fill="#FF474747" Grid.Column="1" Margin="3,0,3,-10"/>
|
|
<Rectangle Fill="#FF474747" Grid.Column="3" Margin="3,0,3,-10"/>
|
|
<ScrollViewer x:Name="ProgramsScrollViever" Template="{DynamicResource myScrollViewer}"
|
|
Grid.Column="0" Grid.Row="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
|
<StackPanel x:Name="ProgramsPanel">
|
|
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
<Image x:Name="BackgroundImage" Grid.Column="2" HorizontalAlignment="Stretch" Stretch="Fill" Margin="0,40,0,0" />
|
|
<Label x:Name="NameLabel" Grid.Column="2" Grid.Row="0" Margin="0,0,0,361"
|
|
FontSize="16" FontWeight="Bold" FontFamily="Unispace" Foreground="#FFF0F0F0"/>
|
|
<Button x:Name="InstallButton" Content="Install" FontWeight="Bold" FontFamily="Unispace" FontSize="17"
|
|
Grid.Column="2" Background="#FFB97523" Foreground="#FFF0F0F0"
|
|
BorderThickness="3" Template="{DynamicResource roundedButton}" Margin="0,72,167,0"
|
|
HorizontalAlignment="Right" Width="123" Height="37" VerticalAlignment="Top"/>
|
|
<Button x:Name="LaunchButton" Content="Launch" FontWeight="Bold" FontFamily="Unispace" FontSize="17"
|
|
Grid.Column="2" Background="#FFB97523" Foreground="#FFF0F0F0"
|
|
BorderThickness="3" Template="{DynamicResource roundedButton}" Margin="0,72,20,0"
|
|
HorizontalAlignment="Right" Width="123" Height="37" VerticalAlignment="Top"/>
|
|
<TextBox x:Name="DescriptionBox" Template="{DynamicResource myTextBox}" Opacity="0.8"
|
|
VerticalScrollBarVisibility="Auto" TextWrapping="Wrap" BorderThickness="0"
|
|
Background="#FF141419" Foreground="#FFF0F0F0" SelectionBrush="#FF3E759E"
|
|
FontSize="14" IsReadOnly="True" Grid.Column="2" Grid.Row="0" Margin="0,160,0,0"/>
|
|
<Border BorderBrush="#FF141419" BorderThickness="1" Grid.Column="2" Grid.Row="0" Margin="0,160,0,0"/>
|
|
<ScrollViewer x:Name="DownloadsScrollViever" Template="{DynamicResource myScrollViewer}" VerticalContentAlignment="Top"
|
|
Grid.Column="4" Grid.Row="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
|
|
<StackPanel x:Name="DownloadsPanel">
|
|
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
|
|
</Grid>
|
|
<Grid x:Name="LogGrid" Visibility="Hidden" Grid.Row="3" Grid.Column="1">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="34"/>
|
|
<RowDefinition Height="10*"/>
|
|
</Grid.RowDefinitions>
|
|
<Label x:Name="LogfileLabel" Content="logfile" Grid.Column="0" Grid.Row="0"
|
|
FontSize="20" FontWeight="Bold" FontFamily="Unispace" Foreground="#FFF0F0F0"/>
|
|
<TextBox x:Name="LogBox" Template="{DynamicResource myTextBox}"
|
|
VerticalScrollBarVisibility="Auto" TextWrapping="Wrap" BorderThickness="0"
|
|
Background="#FF141419" Foreground="#FFF0F0F0" SelectionBrush="#FF3E759E"
|
|
FontSize="14" IsReadOnly="True" Grid.Column="0" Grid.Row="1"/>
|
|
</Grid>
|
|
<Grid x:Name="SettingsGrid" Visibility="Hidden" Grid.Row="3" Grid.Column="1">
|
|
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|