2023-05-11 23:11:39 -04: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-05-01 10:31:55 -04:00
|
|
|
xmlns:cc="using:SPTInstaller.CustomControls"
|
2023-05-11 23:11:39 -04:00
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
|
|
x:Class="SPTInstaller.Views.InstallView">
|
|
|
|
|
2024-05-01 10:31:55 -04:00
|
|
|
<Grid ColumnDefinitions="*, 2*">
|
|
|
|
<cc:ProgressableTaskList Tasks="{Binding MyTasks}"
|
|
|
|
Padding="20"
|
2024-05-21 23:07:51 +01:00
|
|
|
Background="{StaticResource SPT_Background_Dark}"
|
2024-05-01 10:31:55 -04:00
|
|
|
PendingColor="Gray"
|
|
|
|
RunningColor="DodgerBlue"
|
2024-05-21 23:07:51 +01:00
|
|
|
CompletedColor="{StaticResource SPT_Brush_Yellow}" />
|
2024-05-01 10:31:55 -04:00
|
|
|
<cc:TaskDetails Grid.Column="1"
|
|
|
|
Message="{Binding CurrentTask.StatusMessage}"
|
|
|
|
Details="{Binding CurrentTask.StatusDetails}"
|
|
|
|
Progress="{Binding CurrentTask.Progress}"
|
|
|
|
IndeterminateProgress="{Binding CurrentTask.IndeterminateProgress}"
|
|
|
|
ShowProgress="{Binding CurrentTask.ShowProgress}" />
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|