mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-26 06:20:24 +00:00
49 lines
1,004 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|