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); // 返回执行的结果
  • 相关阅读:
    mysql数据库备份脚本
    int main(int argc,char *argv[])参数的应用
    文件I/O实现cp复制功能
    网络通信TCP编程实例代码
    外部碎片、进程描述符、内部碎片
    程序、进程、作业、线程的关系
    word2016怎么从第三页开始设置页码
    ARMs3c2440开发板挂接NFS服务
    u-boot添加一个hello命令
    vi 编辑器跳转到指定行数
  • 原文地址:https://www.cnblogs.com/rinack/p/2708099.html
Copyright © 2011-2022 走看看