-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdvancedSettings.axaml
More file actions
17 lines (17 loc) · 1.33 KB
/
AdvancedSettings.axaml
File metadata and controls
17 lines (17 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Window xmlns="https://github.com/avaloniaui"
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"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="MoSpeedUI.AdvancedSettings"
xmlns:lang="clr-namespace:MoSpeedUI.Lang"
Title="{x:Static lang:Resources.Advanced}">
<StackPanel Margin="8">
<TextBlock Text="{x:Static lang:Resources.Advanced}" FontSize="24" FontWeight="Medium"/>
<TextBlock Text="{x:Static lang:Resources.AdvWelcome}" FontSize="16" TextWrapping="Wrap"/>
<TextBox x:Name="AdvBox" Margin="0,8,0,0" Watermark="{x:Static lang:Resources.AdvWatermark}"/>
<Button Margin="0,8,0,0" Content="{x:Static lang:Resources.Apply}" HorizontalAlignment="Stretch" HorizontalContentAlignment="Center" Click="Button_OnClick"/>
<Button Margin="0,8,0,0" Content="{x:Static lang:Resources.OpenParameterWiki}" HorizontalAlignment="Stretch" HorizontalContentAlignment="Center" Click="WikiBtn_OnClick"/>
<Button x:Name="UpdateBtn" Margin="0,4,0,0" Content="{x:Static lang:Resources.UpdateBtn}" HorizontalAlignment="Stretch" HorizontalContentAlignment="Center" Click="UpdateBtn_OnClick"/>
</StackPanel>
</Window>