mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
40 lines
1.8 KiB
XML
40 lines
1.8 KiB
XML
<rxui:ReactiveUserControl
|
|
x:Class="Wabbajack.CompilerFileManagerView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:lib="clr-namespace:Wabbajack;assembly=Wabbajack"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:icon="http://metro.mahapps.com/winfx/xaml/iconpacks"
|
|
xmlns:local="clr-namespace:Wabbajack"
|
|
xmlns:mahapps="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:rxui="http://reactiveui.net"
|
|
xmlns:wabbacommon="clr-namespace:Wabbajack.Common;assembly=Wabbajack.Common"
|
|
xmlns:controls1="clr-namespace:Wabbajack.ViewModels.Controls"
|
|
d:DataContext="{d:DesignInstance local:CompilerFileManagerVM}"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
x:TypeArguments="local:CompilerFileManagerVM"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="7*"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<TreeView x:Name="FileTreeView"/>
|
|
<Grid Grid.Row="1" Margin="0, 16, 0, 0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Button x:Name="PrevButton" Content="Back to Modlist Details" Margin="0, 0, 16, 0"/>
|
|
<Button Grid.Column="1" x:Name="ReinferSettingsButton" Content="Re-infer Settings" Margin="0, 0, 16, 0"/>
|
|
<Button Grid.Column="5" x:Name="ContinueButton" Content="Continue" Margin="16, 0, 0, 0"/>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
</rxui:ReactiveUserControl>
|