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

25
ProgressWindow.xaml.cs Normal file
View File

@ -0,0 +1,25 @@
using System.ComponentModel;
using System.Windows;
using System.Windows.Controls;
namespace Test
{
public partial class ProgressWindow : Window
{
public ProgressWindow()
{
InitializeComponent();
}
public void ProgressBar_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
}
public void setProgressBarValue(int progress)
{
ProgressBar.Value = progress;
}
}
}