zoukankan      html  css  js  c++  java
  • StatusStrip状态栏控件

    1、ToolStripStatusLabel

    statusstrip1.Items[1].Text="日期"+DateTime.Now.ToString();
    Thread p = new Thread(
                    () =>
                        {
                            while (true)
                            {
                                Invoke(
                                    (MethodInvoker)(() =>
                                        {
                                            toolStripStatusLabel1.Text = DateTime.Now.ToString("HH时mm分s秒");
                                        }
                                                    ));
                                Thread.Sleep(1000);
                            }
                        }
                    );
                p.IsBackground = true;
                p.Start();

    制作动画窗体

            private void Frm_Main_Load(object sender, EventArgs e)
            {
                int i=1;
                Thread P_th = new Thread(//创建线程对象
                    () =>//使用Lambda表达式
                    {
                        while (true)//无限循环
                        {
                            Invoke(//调用窗体线程
                                (MethodInvoker)(() =>//使用Lambda表达式
                                {
                                    toolStripStatusLabel1.Image =
                                        Image.FromFile((++i > 8 ? (i=1) : i).ToString() + ".bmp");
                                }));
                            Thread.Sleep(50);//线程挂起一秒
                        }
                    });
                P_th.IsBackground = true;//设置线程为后台线程
                P_th.Start();//线程开始
            }

    2、ToolStripProcessBar

    this.toolStripProgressBar1.Enabled = true;
    
    
    while (toolStripProgressBar1.Value < toolStripProgressBar1.Maximum)
    {
          this.toolStripProgressBar1.PerformStep();
    }
  • 相关阅读:
    JS学习之旅2
    JS学习之旅1
    Stack 栈
    Linked List 链表
    Array 数组
    时间/空间复杂度
    What/Why/How
    Https 握手过程
    JS跨域解决方案
    JS 的内存管理-GC
  • 原文地址:https://www.cnblogs.com/chenyongblog/p/3256580.html
Copyright © 2011-2022 走看看