Skip to content

Commit

Permalink
Merge pull request #167 from ONLOX/dev
Browse files Browse the repository at this point in the history
Update Launcher View and ViewModel
  • Loading branch information
ONLOX authored Apr 2, 2024
2 parents 50e4c6e + 7195d39 commit d0c26b8
Show file tree
Hide file tree
Showing 2 changed files with 397 additions and 41 deletions.
29 changes: 29 additions & 0 deletions installer/Page/LaunchPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,39 @@
Text="{Binding PlaybackSpeed}"
FontSize="16"/>
</HorizontalStackLayout>
<HorizontalStackLayout>
<Label
WidthRequest="170"
Text="Language"
VerticalOptions="Center"
FontSize="{Binding ConstFontSize}"/>
<CheckBox
IsChecked="{Binding CppSelect}"/>
<Label
WidthRequest="100"
Text="C++"
VerticalOptions="Center"
FontSize="{Binding ConstFontSize}"/>
<CheckBox
IsChecked="{Binding PySelect}"/>
<Label
WidthRequest="100"
Text="Python"
VerticalOptions="Center"
FontSize="{Binding ConstFontSize}"/>
</HorizontalStackLayout>

<Label
Text="{Binding DebugAlert}"/>

<Button
WidthRequest="400"
Text="保存"
Command="{Binding SaveBtnClickedCommand}"
IsEnabled="{Binding SaveEnabled}"
BackgroundColor="{Binding ConstBackgroundColor}"
FontSize="{Binding ConstFontSize}"
TextColor="{Binding ConstTextColor}"/>
<Button
WidthRequest="400"
Text="启动"
Expand Down
Loading

0 comments on commit d0c26b8

Please sign in to comment.