Initial Commit

This commit is contained in:
Jason SECULA
2025-06-12 10:31:28 +02:00
commit 16af3459e3
48 changed files with 1688 additions and 0 deletions

17
ProgressWindow.xaml Normal file
View File

@ -0,0 +1,17 @@
<Window x:Class="Test.ProgressWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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:local="clr-namespace:Test"
mc:Ignorable="d"
Title="Software Center Repair" Height="232" Width="400" WindowStyle="ThreeDBorderWindow" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="400*"/>
</Grid.ColumnDefinitions>
<Label x:Name="errorLabel" Content="" HorizontalAlignment="Center" Margin="0,130,0,0" VerticalAlignment="Top" Visibility="Hidden"/>
<ProgressBar x:Name="ProgressBar" HorizontalAlignment="Left" Height="21" Margin="30,0,0,0" VerticalAlignment="Center" Width="320" Grid.ColumnSpan="3" ValueChanged="ProgressBar_ValueChanged"/>
<Label x:Name="ProgressLabel" Content="Label" HorizontalAlignment="Left" Margin="27,55,0,0" VerticalAlignment="Top" Grid.ColumnSpan="2" Width="340" Height="29"/>
</Grid>
</Window>