zoukankan      html  css  js  c++  java
  • C# WinForm 弹出模式窗口操作滚动条

    弹出的模式窗体

    public partial class frmProcessBar : Form
    {
        public frmProcessBar()
        {
            InitializeComponent();
        }
        
        public bool Increase(int runTime)
        {
            if (runTime > 0)
            {
                int tempTime = Convert.ToInt32(prcBar.Value);
                if (tempTime % 10 == 0)
                {
                    this.labTimer.Text = (Convert.ToInt32(this.labTimer.Text) + runTime).ToString();
                }
                if (prcBar.Value + runTime < prcBar.Maximum)
                {
                    prcBar.Value += runTime;
                    return true;
                }else{
                    prcBar.Value = prcBar.Maximum;
                    this.Close();
                    return false;
                }
            }
            return false;
        }
    }

    测试用例

    public delegate string AsyncMethodCaller();
    public delegate void AsyncShowMethod();
    private frmProcessBar myProcessBar = null;
    private delegate bool IncreaseHandle(int runTime);
    private IncreaseHandle myIncrease = null;
    
    private void ShowProcessBar()
    {
        myProcessBar = new frmProcessBar();
        myIncrease = new IncreaseHandle(myProcessBar.Increase);
        myProcessBar.StartPosition = FormStartPosition.CenterParent;
        myProcessBar.ShowDialog();
        myProcessBar = null;
    }
    
    string result = string.Empty;//接收返回的结果
    AsyncMethodCaller callerRun = new AsyncMethodCaller(disPlay.Show); //耗时执行的方法
    IAsyncResult synresult = callerRun.BeginInvoke(null, null);
    this.BeginInvoke(new AsyncShowMethod(ShowProcessBar)); //启动弹出窗体
    while (synresult.IsCompleted == false)
    {
        this.BeginInvoke(this.myIncrease, new object[] { 1, 1 });
        Thread.Sleep(100);
    }
    this.BeginInvoke(this.myIncrease, new object[] { 100, 1 });
    result = callerRun.EndInvoke(synresult); // 返回执行的结果
  • 相关阅读:
    ubuntu
    ubuntu
    ubuntu14.04,安装Gnome 15.10 (桌面)
    ubuntu14.04,安装Gnome 15.10 (桌面)
    Ubuntu 14.04.3 LTS如何安装谷歌输入法
    Ubuntu 14.04.3 LTS如何安装谷歌输入法
    ubuntu 安装 删除 卸载 Deb 包文件
    失去爆破音规律
    单词发音规律
    英式音标和美式音标的差异
  • 原文地址:https://www.cnblogs.com/rinack/p/2708099.html
Copyright © 2011-2022 走看看