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;
// make sure that using System.Diagnostics; is included
using System.Diagnostics;
namespace Template
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
for (int i = 0; i < toolStripProgressBar1.Maximum; i++)
{
toolStripProgressBar1.Value += 1;
if (toolStripProgressBar1.Value == 80)
{
return;
}
}
}
}
}
No comments:
Post a Comment