C# 基础: 线程示例2-控制进度条的滚动(线程的加入)

C# 基础: 线程示例2-控制进度条的滚动(线程的加入)

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;
using System.Threading;

namespace WindowsFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            CheckForIllegalCrossThreadCalls = false; // 使线程可以调用窗体控件
        }
        public Thread th1, th2;
        public void TestProcess1()
        {
            int count = 0;                          // 标识合适加载线程2
            while (true)
            {                               
                pgBar1.PerformStep();               // 设置进度条的当前值
                count += pgBar1.Step;               // 标识每步增加固定步长
                Thread.Sleep(200);                   // 使线程1休眠50ms
                if (count == 20)                    //当count=20时,添加线程2任务
                {
                    th2.Join();
                }
            }
        }
        public void TestProcess2()
        {
            int count = 0;
            while (true)
            {
                pgBar2.PerformStep();
                count += pgBar2.Step;
                Thread.Sleep(200);
                if (count == 200)
                    break;
            }
        }

        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            // 如果关闭窗口时,线程还在运行则终止
            if (th1.ThreadState == ThreadState.Running)
                th1.Abort();
            if (th2.ThreadState == ThreadState.Running)
                th2.Abort();

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            th1 = new Thread(new ThreadStart(TestProcess1));
            th1.Start();
            th2 = new Thread(new ThreadStart(TestProcess2));
            th2.Start();
        }
    }
}


输出结果:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值