我在 C# Windows 窗体中创建了一个进度条示例应用程序。
我的应用程序运行良好,但是当我尝试移动我的应用程序位置或最小化时,它会“挂起”,直到它的过程不符合要求。
请帮助:如何防止我的应用程序“挂起”?
这是我的应用程序代码:
public partial class ProgressBar : Form
{
public ProgressBar()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int value;
for (value = 0; value != 10000000; value++)
progressBar1.Value = progressBar1.Value + 1;
MessageBox.Show("ProgressBar Full", "Done",
MessageBoxButtons.OK, MessageBoxIcon.Information);
this.Close();
}
private void ProgressBar_Load(object sender, EventArgs e)
{
progressBar1.Maximum = 10000000;
}
}