123456789101112131415161718192021222324252627282930313233343536 |
- 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 WindowsFormsStatusStrip
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void Form1_Load(object sender, EventArgs e)
- {
- this.toolStripStatusLabel2.Text = DateTime.Now.ToShortDateString();//将系统当前时间赋值给一个Label控件,也就是toolStripStatusLabel2
- }
- private void button1_Click(object sender, EventArgs e)
- {
- this.toolStripProgressBar1.Minimum = 0;
- this.toolStripProgressBar1.Maximum = 5000;
- this.toolStripProgressBar1.Step = 2;
- for (int i = 0; i <= 4999; i++)
- {
- this.toolStripProgressBar1.PerformStep();
- }
- }
- }
- }
|