26 lines
503 B
C#
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;
|
|
}
|
|
}
|
|
}
|