Simple ProgressBar created using WPF.
var count = 1000;
using (var progressBarView = new ProgressBarView($"Title", count))
{
progressBarView.Show();
for (int i = 0; i < count; i++)
{
// Do something
if (progressBarView.Update()) break;
}
}
using (var progressBar2View = new ProgressBar2View())
{
var count = 1000;
progressBar2View.Run($"Title", count, (i) =>
{
// Do Something
});
}
This library is licensed under the MIT Licence.
Do you like this project? Please star this project on GitHub!