Initial Commit
This commit is contained in:
25
ProgressWindow.xaml.cs
Normal file
25
ProgressWindow.xaml.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user