Files
SoftwareCenterRepair/ProgressWindow.xaml.cs
Jason SECULA 16af3459e3 Initial Commit
2025-06-12 10:32:52 +02:00

26 lines
503 B
C#

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;
}
}
}