0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 07:30:43 -05:00
launcher/project/SPT.Launcher/Views/ProfileView.axaml

37 lines
1.8 KiB
Plaintext
Raw Normal View History

2023-03-03 19:25:33 +00:00
<UserControl 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"
2024-07-08 18:41:22 -04:00
xmlns:cc="using:SPT.Launcher.CustomControls"
2023-03-03 19:25:33 +00:00
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
2024-05-21 20:15:19 +01:00
x:Class="SPT.Launcher.Views.ProfileView">
2024-01-26 12:35:57 -05:00
<Grid RowDefinitions="10,AUTO,10,AUTO,10,*,10,AUTO,10" ColumnDefinitions="10,AUTO,10,*,10">
<!-- profile info -->
2024-07-08 18:41:22 -04:00
<cc:ProfileCard Grid.Row="1" Grid.Column="1"
ProfileInfo="{Binding ProfileInfo}"
CurrentEdition="{Binding CurrentEdition}"
CurrentId="{Binding CurrentId}"
WipeProfileOnStart="{Binding WipeProfileOnStart}"
ProfileWipePending="{Binding ProfileWipePending}"
CopyCommand="{Binding CopyCommand}"
ChangeEditionCommand="{Binding ChangeEditionCommand}"
RemoveProfileCommand="{Binding RemoveProfileCommand}"
/>
2024-01-26 12:35:57 -05:00
<!-- Total Mods Info -->
2024-07-08 18:41:22 -04:00
<cc:TotalModsCard Grid.Row="3" Grid.Column="1"
ActiveModsCount="{Binding ModInfoCollection.ActiveMods.Count}"
OpenModsInfoCommand="{Binding OpenModsInfoCommand}"
/>
<!-- Game bar -->
<cc:GameLaunchBar Grid.Row="7" Grid.Column="1" Grid.ColumnSpan="3"
ProfileInfo="{Binding ProfileInfo}"
StartGameCommand="{Binding StartGameCommand}"
LogoutCommand="{Binding LogoutCommand}"
/>
2024-01-26 12:35:57 -05:00
</Grid>
</UserControl>