C#进度条_winform进度条设计[通俗易懂]

C#进度条_winform进度条设计[通俗易懂]usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;nam

C#进度条_winform进度条设计[通俗易懂]"

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 进度条
{
    class Program
    {
        static void Main(string[] args) { 

         bool isBreak = false;

        ConsoleColor colorBack = Console.BackgroundColor;

        ConsoleColor colorFore = Console.ForegroundColor;

        //第一行信息
        Console.WriteLine("****** I love this world ******");

            //第二行绘制进度条背景

            Console.BackgroundColor = ConsoleColor.Red;

            for (int i = 0; ++i <= 25;)
            {
                Console.Write(" ");
            }
            Console.WriteLine(" ");

            Console.BackgroundColor = colorBack;

            //第三行输出进度
            Console.WriteLine("0%");

            //第四行输出提示,按下回车可以取消当前进度
            Console.WriteLine("按回车键暂停");

            //-----------------------上面绘制了一个完整的工作区域,下面开始工作
            //开始控制进度条和进度变化
            for (int i = 0; ++i <= 100;)

            {
                //先检查是否有按键请求,如果有,判断是否为回车键,如果是则退出循环
                if (Console.KeyAvailable && System.Console.ReadKey(true).Key == ConsoleKey.Enter)

                {
                    isBreak = true;
                    break;
                }

                //绘制进度条进度

                Console.BackgroundColor = ConsoleColor.Yellow;//设置进度条颜色

                Console.SetCursorPosition(i / 4, 1);//设置光标位置,参数为第几列和第几行

                Console.Write(" ");//移动进度条

                Console.BackgroundColor = colorBack;//恢复输出颜色

                //更新进度百分比,原理同上.

                Console.ForegroundColor = ConsoleColor.Green;

                Console.SetCursorPosition(0, 2);

                Console.Write("{0}%", i);

                Console.ForegroundColor = colorFore;

                //模拟实际工作中的延迟,否则进度太快
                System.Threading.Thread.Sleep(100);
            }

            //工作完成,根据实际情况输出信息,而且清楚提示退出的信息
            Console.SetCursorPosition(0, 3);

            Console.Write(isBreak? "break!!!" : "finished.");

            Console.WriteLine(" ");
            Console.WriteLine("按任意键退出");

            //等待退出

            Console.ReadKey(true);
        }
    }
}

今天的文章C#进度条_winform进度条设计[通俗易懂]分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/77185.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注