mirror of
https://github.com/casksteven/Sweaty-Launcher.git
synced 2024-06-24 21:09:27 +00:00
301 lines
14 KiB
Text
301 lines
14 KiB
Text
|
<Page
|
||
|
x:Class="Launcher.View.Home"
|
||
|
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:local="clr-namespace:Launcher.View"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
xmlns:prop="clr-namespace:Launcher.Properties"
|
||
|
xmlns:pu="clr-namespace:Panuon.WPF.UI;assembly=Panuon.WPF.UI"
|
||
|
xmlns:viewmodel="clr-namespace:Launcher.ViewModel"
|
||
|
Title="Home"
|
||
|
d:DataContext="{d:DesignInstance Type=viewmodel:HomeVM}"
|
||
|
d:DesignHeight="500"
|
||
|
d:DesignWidth="600"
|
||
|
mc:Ignorable="d">
|
||
|
|
||
|
<Grid Margin="20">
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="40" />
|
||
|
|
||
|
<RowDefinition />
|
||
|
<RowDefinition Height="auto" />
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<ListBox
|
||
|
x:Name="pt"
|
||
|
pu:ListBoxHelper.CornerRadius="20"
|
||
|
pu:ListBoxHelper.ItemsCornerRadius="20"
|
||
|
pu:ListBoxHelper.ItemsHeight="40"
|
||
|
pu:ListBoxHelper.ItemsHoverBackground="#a0b8dbf1"
|
||
|
pu:ListBoxHelper.ItemsPadding="20 0"
|
||
|
pu:ListBoxHelper.ItemsSelectedBackground="#b8dbf1"
|
||
|
pu:ListBoxHelper.ShadowColor="Gray"
|
||
|
pu:ShadowHelper.Opacity="0.2"
|
||
|
Background="#f3f6fc"
|
||
|
BorderThickness="0"
|
||
|
FontSize="14"
|
||
|
FontWeight="Bold"
|
||
|
IsEnabled="{Binding CanChangeProxyType}"
|
||
|
SelectionChanged="ListBox_SelectionChanged">
|
||
|
<ListBox.ItemsPanel>
|
||
|
<ItemsPanelTemplate>
|
||
|
<UniformGrid Columns="3" IsItemsHost="True" />
|
||
|
</ItemsPanelTemplate>
|
||
|
</ListBox.ItemsPanel>
|
||
|
<ListBoxItem>
|
||
|
<TextBlock HorizontalAlignment="Center" Text="{x:Static prop:Resources.tab_official}" />
|
||
|
</ListBoxItem>
|
||
|
<ListBoxItem>
|
||
|
<TextBlock Text="{x:Static prop:Resources.tab_private}" />
|
||
|
</ListBoxItem>
|
||
|
<ListBoxItem>
|
||
|
<TextBlock Text="{x:Static prop:Resources.tab_proxyonly}" />
|
||
|
</ListBoxItem>
|
||
|
</ListBox>
|
||
|
|
||
|
<Grid Grid.Row="1" Margin="0,10,0,0">
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="*" />
|
||
|
<ColumnDefinition Width="180" />
|
||
|
</Grid.ColumnDefinitions>
|
||
|
|
||
|
<Grid Margin="0,0,10,0" Panel.ZIndex="2">
|
||
|
|
||
|
<Border CornerRadius="20" />
|
||
|
<Border
|
||
|
Margin="0,10,20,0"
|
||
|
Padding="4"
|
||
|
HorizontalAlignment="Right"
|
||
|
VerticalAlignment="Top"
|
||
|
Background="#66E3F2FD"
|
||
|
CornerRadius="4">
|
||
|
|
||
|
<TextBlock FontSize="14" ToolTip="Fake">
|
||
|
<Run Text="Online:" />
|
||
|
<Run Text="30" />
|
||
|
<Run Text="/" />
|
||
|
<Run Text="120" />
|
||
|
</TextBlock>
|
||
|
</Border>
|
||
|
|
||
|
|
||
|
<StackPanel
|
||
|
Name="srv_list"
|
||
|
Margin="20"
|
||
|
VerticalAlignment="Bottom">
|
||
|
<Border
|
||
|
Height="160"
|
||
|
Background="#aaE3F2FD"
|
||
|
CornerRadius="15 15 15 15">
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="auto" />
|
||
|
<RowDefinition />
|
||
|
</Grid.RowDefinitions>
|
||
|
<ToggleButton
|
||
|
Margin="10,10,0,0"
|
||
|
HorizontalAlignment="Left"
|
||
|
VerticalAlignment="Top"
|
||
|
Background="Transparent"
|
||
|
BorderThickness="0"
|
||
|
Content="{x:Static prop:Resources.h_servers}"
|
||
|
FontSize="16"
|
||
|
FontWeight="Bold" />
|
||
|
<ListBox
|
||
|
Grid.Row="2"
|
||
|
Padding="4"
|
||
|
pu:ListBoxHelper.ItemsCornerRadius="16"
|
||
|
pu:ListBoxHelper.ItemsHoverBackground="#88b8dbf1"
|
||
|
pu:ListBoxHelper.ItemsPadding="8"
|
||
|
pu:ListBoxHelper.ItemsSelectedBackground="#b8dbf1"
|
||
|
pu:ScrollBarHelper.HoverThumbBackground="#b8dbf1"
|
||
|
pu:ScrollBarHelper.ThumbBackground="#aab8dbf1"
|
||
|
pu:ScrollBarHelper.ThumbBorderThickness="2 0 0 4"
|
||
|
pu:ScrollBarHelper.ThumbCornerRadius="4"
|
||
|
Background="Transparent"
|
||
|
BorderThickness="0"
|
||
|
FontSize="14"
|
||
|
ItemsSource="{Binding LauncherConfig.Servers}"
|
||
|
SelectedIndex="{Binding LauncherConfig.SelectedSrvIndex}"
|
||
|
SelectedValue="{Binding SelectedSrv}">
|
||
|
<pu:ListBoxHelper.EmptyContent>
|
||
|
<Grid>
|
||
|
<TextBlock
|
||
|
HorizontalAlignment="Center"
|
||
|
VerticalAlignment="Center"
|
||
|
FontSize="16"
|
||
|
Text="空" />
|
||
|
</Grid>
|
||
|
</pu:ListBoxHelper.EmptyContent>
|
||
|
<ListBox.ContextMenu>
|
||
|
<ContextMenu
|
||
|
MinWidth="240"
|
||
|
Padding="0"
|
||
|
pu:ContextMenuHelper.CornerRadius="20"
|
||
|
pu:ContextMenuHelper.ItemsHeight="36"
|
||
|
pu:ContextMenuHelper.ItemsHoverBackground="#b8dbf1"
|
||
|
pu:ContextMenuHelper.ShadowColor="Gray"
|
||
|
pu:ShadowHelper.Opacity="0.2"
|
||
|
Background="#f3f6fc"
|
||
|
BorderThickness="0"
|
||
|
FontSize="14">
|
||
|
<MenuItem Command="{Binding EditCommand}" Header="{x:Static prop:Resources.cm_edit}" />
|
||
|
<MenuItem Command="{Binding AddCommand}" Header="{x:Static prop:Resources.cm_add}" />
|
||
|
<MenuItem Command="{Binding DeleteCommand}" Header="{x:Static prop:Resources.cm_del}" />
|
||
|
<MenuItem Command="{Binding ExportCommand}" Header="{x:Static prop:Resources.cm_export}" />
|
||
|
<MenuItem Command="{Binding ImportCommand}" Header="{x:Static prop:Resources.cm_import}" />
|
||
|
</ContextMenu>
|
||
|
</ListBox.ContextMenu>
|
||
|
<ListBox.ItemTemplate>
|
||
|
<DataTemplate>
|
||
|
|
||
|
<Grid>
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="auto" />
|
||
|
<ColumnDefinition />
|
||
|
<ColumnDefinition Width="auto" />
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<TextBlock
|
||
|
Margin="4,0,4,0"
|
||
|
VerticalAlignment="Center"
|
||
|
FontSize="16">
|
||
|
|
||
|
<Run FontFamily="{StaticResource remix}" Text="" />
|
||
|
</TextBlock>
|
||
|
<TextBlock Grid.Column="1">
|
||
|
<Run Text="{Binding Name}" />
|
||
|
</TextBlock>
|
||
|
<StackPanel Grid.Column="2" Orientation="Horizontal">
|
||
|
|
||
|
<!--<Button
|
||
|
HorizontalAlignment="Right"
|
||
|
pu:ButtonHelper.ClickBackground="#30EF5350"
|
||
|
pu:ButtonHelper.CornerRadius="4"
|
||
|
Background="Transparent"
|
||
|
FontFamily="{StaticResource remix}"
|
||
|
FontSize="18">
|
||
|

|
||
|
</Button>-->
|
||
|
</StackPanel>
|
||
|
|
||
|
|
||
|
</Grid>
|
||
|
</DataTemplate>
|
||
|
</ListBox.ItemTemplate>
|
||
|
</ListBox>
|
||
|
</Grid>
|
||
|
|
||
|
|
||
|
</Border>
|
||
|
</StackPanel>
|
||
|
|
||
|
</Grid>
|
||
|
|
||
|
<Border
|
||
|
Grid.ColumnSpan="2"
|
||
|
CornerRadius="20"
|
||
|
Effect="{StaticResource defaultShadow}"
|
||
|
RenderOptions.BitmapScalingMode="HighQuality">
|
||
|
<Border.Background>
|
||
|
<ImageBrush ImageSource="{Binding LauncherConfig.BgUrl}" Stretch="UniformToFill" />
|
||
|
</Border.Background>
|
||
|
<Border
|
||
|
Margin="350,0,0,0"
|
||
|
Padding="20"
|
||
|
Background="#88E3F2FD"
|
||
|
CornerRadius="0 20 20 0">
|
||
|
|
||
|
|
||
|
<Grid>
|
||
|
|
||
|
<TextBlock TextWrapping="Wrap">
|
||
|
<Run
|
||
|
FontSize="30"
|
||
|
FontWeight="Bold"
|
||
|
Text="{Binding SelectedSrv.Name, FallbackValue={x:Static prop:Resources.tip_selectone}}" />
|
||
|
<LineBreak />
|
||
|
<Run>
|
||
|
Styles are the visual aspects of a UI that give it a distinct look and feel.
|
||
|
</Run>
|
||
|
</TextBlock>
|
||
|
|
||
|
<UniformGrid VerticalAlignment="Bottom" Columns="2">
|
||
|
<StackPanel>
|
||
|
<Button
|
||
|
Width="50"
|
||
|
Height="30"
|
||
|
Margin="4"
|
||
|
pu:ButtonHelper.CornerRadius="15"
|
||
|
Background="#C2E7FF"
|
||
|
Cursor="Hand">
|
||
|
<TextBlock
|
||
|
HorizontalAlignment="Center"
|
||
|
VerticalAlignment="Center"
|
||
|
FontFamily="{StaticResource remix}"
|
||
|
FontSize="20"
|
||
|
Text="" />
|
||
|
</Button>
|
||
|
<TextBlock HorizontalAlignment="Center" Text="Github" />
|
||
|
|
||
|
</StackPanel>
|
||
|
<StackPanel>
|
||
|
<Button
|
||
|
Width="50"
|
||
|
Height="30"
|
||
|
Margin="4"
|
||
|
pu:ButtonHelper.CornerRadius="15"
|
||
|
Background="#C2E7FF"
|
||
|
Cursor="Hand">
|
||
|
<TextBlock
|
||
|
HorizontalAlignment="Center"
|
||
|
VerticalAlignment="Center"
|
||
|
FontFamily="{StaticResource remix}"
|
||
|
FontSize="20"
|
||
|
Text="" />
|
||
|
</Button>
|
||
|
<TextBlock HorizontalAlignment="Center" Text="Discord" />
|
||
|
|
||
|
</StackPanel>
|
||
|
</UniformGrid>
|
||
|
</Grid>
|
||
|
</Border>
|
||
|
|
||
|
</Border>
|
||
|
|
||
|
</Grid>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
<Grid Grid.Row="2" Margin="0,10,0,0">
|
||
|
|
||
|
<Button
|
||
|
Width="140"
|
||
|
Height="50"
|
||
|
HorizontalAlignment="Right"
|
||
|
pu:ButtonHelper.CornerRadius="25"
|
||
|
pu:ButtonHelper.HoverBackground="#ee2a73c5"
|
||
|
pu:ButtonHelper.HoverShadowColor="#b8dbf1"
|
||
|
pu:ButtonHelper.ShadowColor="Gray"
|
||
|
pu:ShadowHelper.Opacity="0.4"
|
||
|
Background="#1867c0"
|
||
|
Command="{Binding StartGameCommand}"
|
||
|
Cursor="Hand"
|
||
|
FontSize="18"
|
||
|
FontWeight="Bold"
|
||
|
Foreground="White">
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<TextBlock
|
||
|
Margin="0,0,8,0"
|
||
|
VerticalAlignment="Center"
|
||
|
FontFamily="{StaticResource remix}"
|
||
|
FontSize="20"
|
||
|
Text="" />
|
||
|
<TextBlock Text="{Binding StartBtn_txt, FallbackValue={x:Static prop:Resources.btn_startgame}}" />
|
||
|
</StackPanel>
|
||
|
</Button>
|
||
|
</Grid>
|
||
|
</Grid>
|
||
|
</Page>
|