mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
57 lines
3.2 KiB
XML
57 lines
3.2 KiB
XML
<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"
|
|
xmlns:controls="clr-namespace:Wabbajack.App.Controls"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="Wabbajack.App.Screens.SettingsView">
|
|
<WrapPanel Margin="40">
|
|
<Border x:Name="LoginBorder" Margin="5" BorderThickness="1">
|
|
<Grid RowDefinitions="Auto, Auto, Auto, Auto" ColumnDefinitions="20, 100, Auto, Auto">
|
|
<TextBlock FontSize="20" Grid.ColumnSpan="4">Logins</TextBlock>
|
|
|
|
<Image Grid.Row="1" Grid.Column="0" Width="16" Height="16" Margin="4"
|
|
Source="../Assets/Downloaders/nexus.ico" HorizontalAlignment="Right" />
|
|
<TextBlock Grid.Row="1" Grid.Column="1" Text="Nexus" VerticalAlignment="Center"
|
|
HorizontalAlignment="Left" />
|
|
<Button Grid.Row="1" Grid.Column="2" x:Name="NexusLogIn">Log In</Button>
|
|
<Button Grid.Row="1" Grid.Column="3" x:Name="NexusLogOut">Log Out</Button>
|
|
|
|
<Image Grid.Row="2" Grid.Column="0" Width="16" Height="16" Margin="4"
|
|
Source="../Assets/Downloaders/loverslab.ico" HorizontalAlignment="Right" />
|
|
<TextBlock Grid.Row="2" Grid.Column="1" Text="Lovers Lab" VerticalAlignment="Center"
|
|
HorizontalAlignment="Left" />
|
|
<Button Grid.Row="2" Grid.Column="2" x:Name="LoversLabLogIn">Log In</Button>
|
|
<Button Grid.Row="2" Grid.Column="3" x:Name="LoversLabLogOut">Log Out</Button>
|
|
|
|
<Image Grid.Row="3" Grid.Column="0" Width="16" Height="16" Margin="4"
|
|
Source="../Assets/Downloaders/vectorplexus.ico" HorizontalAlignment="Right" />
|
|
<TextBlock Grid.Row="3" Grid.Column="1" Text="Vector Plexus" VerticalAlignment="Center"
|
|
HorizontalAlignment="Left" />
|
|
<Button Grid.Row="3" Grid.Column="2" x:Name="VectorPlexusLogIn">Log In</Button>
|
|
<Button Grid.Row="3" Grid.Column="3" x:Name="VectorPlexusLogOut">Log Out</Button>
|
|
|
|
</Grid>
|
|
</Border>
|
|
|
|
<Border x:Name="ResourcesBorder" Margin="5" BorderThickness="1">
|
|
<Grid RowDefinitions="Auto, Auto">
|
|
<TextBlock FontSize="20" Grid.ColumnSpan="4">Resource Limits</TextBlock>
|
|
|
|
<ItemsControl Grid.Row="1" x:Name="ResourceList">
|
|
<ItemsControl.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<StackPanel Orientation="Vertical" />
|
|
</ItemsPanelTemplate>
|
|
</ItemsControl.ItemsPanel>
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<controls:ResourceView />
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
|
|
</Grid>
|
|
</Border>
|
|
</WrapPanel>
|
|
</UserControl> |