Switch-Toolbox/Switch_Toolbox_Library/GUI/ProgressBar.cs
2018-11-11 19:48:33 -05:00

49 lines
1,004 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Switch_Toolbox.Library
{
public partial class ProgressBarWindow : Form
{
public ProgressBarWindow()
{
InitializeComponent();
}
public int Value
{
set
{
progressBar1.Value = value;
if (value >= 100)
Close();
progressBar1.Refresh();
}
}
public string Task
{
set
{
label1.Text = value;
label1.Refresh();
}
}
private void ProgressBar_FormClosed(object sender, FormClosedEventArgs e)
{
}
private void ProgressBarWindow_Load(object sender, EventArgs e)
{
}
}
}