mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
19 lines
1.2 KiB
XML
19 lines
1.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:i="clr-namespace:Material.Icons.Avalonia;assembly=Material.Icons.Avalonia"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="Wabbajack.App.Controls.InstalledListView">
|
|
<Button Name="ListButton" Classes="InstalledList" HorizontalAlignment="Stretch">
|
|
<Border Classes="InstalledList">
|
|
<Grid RowDefinitions="Auto, Auto Auto, Auto" ColumnDefinitions="Auto, *">
|
|
<Image x:Name="ListImage" Grid.RowSpan="4" Grid.Row="0" Grid.Column="0" Width="270" Height="150"></Image>
|
|
<TextBlock Grid.Row="0" Grid.Column="1" x:Name="Title" />
|
|
<TextBlock Grid.Row="1" Grid.Column="1" x:Name="Version" />
|
|
<TextBlock Grid.Row="2" Grid.Column="1" x:Name="Author"></TextBlock>
|
|
<TextBlock Grid.Row="3" Grid.Column="1" x:Name="InstallationPath" />
|
|
</Grid>
|
|
</Border>
|
|
</Button>
|
|
</UserControl> |