mirror of
https://github.com/casksteven/Sweaty-Launcher.git
synced 2024-06-24 21:09:27 +00:00
45 lines
1.4 KiB
Text
45 lines
1.4 KiB
Text
|
<Page
|
||
|
x:Class="Launcher.View.About"
|
||
|
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"
|
||
|
Title="About"
|
||
|
d:DesignHeight="450"
|
||
|
d:DesignWidth="800"
|
||
|
FontSize="14"
|
||
|
mc:Ignorable="d">
|
||
|
|
||
|
<StackPanel Margin="20,40,20,20">
|
||
|
|
||
|
<TextBlock
|
||
|
FontSize="20"
|
||
|
FontWeight="Bold"
|
||
|
Text="{x:Static prop:Resources.h_about}" />
|
||
|
|
||
|
|
||
|
<TextBlock Margin="0,10,0,5" Text="Launcher by SwetyCore" />
|
||
|
|
||
|
<TextBlock Margin="0,5" Text="{x:Static prop:Resources.about_desp}" />
|
||
|
|
||
|
<TextBlock
|
||
|
Margin="0,5"
|
||
|
Cursor="Hand"
|
||
|
Foreground="#FF006DFF"
|
||
|
MouseLeftButtonDown="TextBlock_MouseLeftButtonDown"
|
||
|
Tag="https://github.com/gc-toolkit/Launcher"
|
||
|
Text="{x:Static prop:Resources.repoinfo}" />
|
||
|
|
||
|
<TextBlock
|
||
|
Margin="0,5"
|
||
|
Cursor="Hand"
|
||
|
Foreground="#FF006DFF"
|
||
|
MouseLeftButtonDown="TextBlock_MouseLeftButtonDown"
|
||
|
Tag="https://github.com/34736384/RSAPatch"
|
||
|
Text="{x:Static prop:Resources.repo1}" />
|
||
|
|
||
|
</StackPanel>
|
||
|
</Page>
|