first neet add an user control "DownloadBar":

/*

  • Created by SharpDevelop.
  • User: gwang
  • Date: 2016/8/25
  • Time: 14:01
  • To change this template use Tools | Options | Coding | Edit Standard Headers.

    */

    using System;

    using System.ComponentModel;

    using System.Drawing;

    using System.Windows.Forms;

namespace testHttp

{

///



/// Description of DownloadBar.

///

public partial class DownloadBar : UserControl

{

public DownloadBar()

{

//

// The InitializeComponent() call is required for Windows Forms designer support.

//

InitializeComponent();

Anchor=AnchorStyles.Left|AnchorStyles.Right;

// Width=Parent.Width -40;

Height=65;

		//
// TODO: Add constructor code after the InitializeComponent() call.
//
} public DownloadBar(DownLoadInfo info)
{
//
// The InitializeComponent() call is required for Windows Forms designer support.
//
InitializeComponent();
MinimumSize= new Size(126,66);
this.info=info;
btn1.Text=""+info.title +info.uid;
btn1.Visible=false;
lb1.Visible=true ; if (info.ProgressPercentage<100){ lb1.Visible=true;
lb1.Text=info.ProgressPercentage+"%"; } t = new Timer();
t.Tick+=t_tick;
t.Start ();
} protected override void OnLoad(EventArgs e)
{ base.OnLoad(e);
//Anchor=AnchorStyles.Left|AnchorStyles.Right;
// this.Size = new System.Drawing.Size(274, 65);
this.Size = new System.Drawing.Size(Parent.Width-20, 65);
this.ResumeLayout(false); } Timer t;
DownLoadInfo info; void t_tick(object sender, EventArgs e){ if(info.ProgressPercentage>=100 || info.isCompleted )
{
//lb1.Visible=false;
t.Stop();
btn1.Visible=true ;
lb1.Visible=false;
} lb1.Text=info.ProgressPercentage+"%";
lb1.Width=(int )( Width* ((double )info.ProgressPercentage * 0.01d)); }
void Btn1Click(object sender, EventArgs e)
{
MessageBox.Show(info.title );
} }

}

---------partial class for ui InitializeComponent------------------------

/*

  • Created by SharpDevelop.

  • User: gwang

  • Date: 2016/8/25

  • Time: 14:01

  • To change this template use Tools | Options | Coding | Edit Standard Headers.

    */

    namespace testHttp

    {

    partial class DownloadBar

    {

    ///



    /// Designer variable used to keep track of non-visual components.

    ///

    private System.ComponentModel.IContainer components = null;

    private System.Windows.Forms.Label lb1;

    private System.Windows.Forms.Button btn1;

     /// <summary>
    /// Disposes resources used by the control.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    protected override void Dispose(bool disposing)
    {
    if (disposing) {
    if (components != null) {
    components.Dispose();
    }
    }
    base.Dispose(disposing);
    } /// <summary>
    /// This method is required for Windows Forms designer support.
    /// Do not change the method contents inside the source code editor. The Forms designer might
    /// not be able to load this method if it was changed manually.
    /// </summary>
    private void InitializeComponent()
    {
    this.lb1 = new System.Windows.Forms.Label();
    this.btn1 = new System.Windows.Forms.Button();
    this.SuspendLayout();
    //
    // lb1
    //
    this.lb1.BackColor = System.Drawing.Color.DodgerBlue;
    this.lb1.Dock = System.Windows.Forms.DockStyle.Left;
    this.lb1.Location = new System.Drawing.Point(0, 0);
    this.lb1.Name = "lb1";
    this.lb1.Size = new System.Drawing.Size(55, 65);
    this.lb1.TabIndex = 0;
    this.lb1.Text = "10%";
    this.lb1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
    //
    // btn1
    //
    this.btn1.Dock = System.Windows.Forms.DockStyle.Fill;
    this.btn1.Location = new System.Drawing.Point(0, 0);
    this.btn1.Name = "btn1";
    this.btn1.Size = new System.Drawing.Size(274, 65);
    this.btn1.TabIndex = 1;
    this.btn1.UseVisualStyleBackColor = true;
    this.btn1.Click += new System.EventHandler(this.Btn1Click);
    //
    // DownloadBar
    //
    this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    this.BackColor = System.Drawing.Color.LightSteelBlue;
    this.Controls.Add(this.lb1);
    this.Controls.Add(this.btn1);
    this.Name = "DownloadBar";
    this.Size = new System.Drawing.Size(274, 65);
    this.ResumeLayout(false); }

    }

    }


2 main ui form code behind "FrmDownload":

/*

  • Created by SharpDevelop.
  • User: gwang
  • Date: 2016/8/25
  • Time: 14:34
  • To change this template use Tools | Options | Coding | Edit Standard Headers.

    */

    using System;

    using System.Drawing;

    using System.Windows.Forms;

namespace testHttp

{

///



/// Description of FrmDownload.

///

public partial class FrmDownload : Form

{

public FrmDownload()

{

//

// The InitializeComponent() call is required for Windows Forms designer support.

//

InitializeComponent();

		//
// TODO: Add constructor code after the InitializeComponent() call.
//
} int uid=1; void Button1Click(object sender, EventArgs e)
{
DownLoadInfo info = new DownLoadInfo();
info.url="http://sw.bos.baidu.com/sw-search-sp/av_aladdin/a997f8c5c22/rj_hb1174.exe";
info.title="test it "+ uid ;
info.uid=""+uid ;
HttpUtils.downloadFile(info);
uid++; this.flowLayoutPanel1.Controls.Add(new DownloadBar(info));
Text="there "+ this.flowLayoutPanel1.Controls.Count +" downloading.........";
} }

}

oh... first need define util class "HttpUtils"

/*

  • Created by SharpDevelop.

  • User: gwang

  • Date: 2016/8/24

  • Time: 17:23

  • To change this template use Tools | Options | Coding | Edit Standard Headers.

    */

    using System;

    using System.Net;

    using System.ComponentModel;

    using System.Collections;

    using System.Collections.Generic;

    using System.Linq;

    namespace testHttp

    {

    ///



    /// Description of HttpUtils.

    ///

    public class HttpUtils

    {

    public HttpUtils()

    {

     }
    
     public static List<DownLoadInfo> listDownloadInfo= new List<DownLoadInfo>();
    
     public static void downloadFile(DownLoadInfo info){
    
     	if(listDownloadInfo.Count (n=> n.uid==info.uid )>0)
    { return;
    } listDownloadInfo.Add(info);
    WebClient wc=new WebClient();
    wc.DownloadProgressChanged+= wc_DownloadProgressChanged;
    wc.DownloadDataCompleted+=wc_DownloadDataCompleted; //wc.DownloadStringAsync(new Uri("https://jirafnd.dev.activenetwork.com/browse/HYTEK-274",UriKind.Absolute ),info);
    wc.DownloadDataAsync(new Uri(info.url ,UriKind.Absolute ),info); } private static void wc_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e){ (e.UserState as DownLoadInfo ).ProgressPercentage= e.ProgressPercentage; } private static void wc_DownloadDataCompleted(object sender, DownloadDataCompletedEventArgs e){ (e.UserState as DownLoadInfo ).isCompleted =( e.Error==null) ; }

    }

    // this for basic info class

    public class DownLoadInfo{

     public string title{get;set;}
    public string url{get;set;}
    public string uid{get;set;}
    public int ProgressPercentage{ get;set;}
    public bool isCompleted{get;set;}

    }

}

c# multi-ply download ui的更多相关文章

  1. jQuery ui autocomplete 与easyUI冲突解决办法(重命名ui的autocomplete 和menu部分)

    http://jqueryui.com/download/   UI定制只选autocomplete 会自动把依赖的menu模块也加入进来--然而easyUI也有自己的menu,于是就-- 折腾了好久 ...

  2. 25套用于 Web UI 设计的免费 PSD 网页元素模板

    Web 元素是任何网站相关项目都需要的,质量和良好设计的元素对于设计师来说就像宝贝一样.如果您正在为您的网站,博客,Web 应用程序或移动应用程序寻找完美设计的网页元素,那么下面这个列表会是你需要的. ...

  3. 免费素材:25套免费的 Web UI 设计的界面元素(转)

    Web 元素是任何网站相关项目都需要的,质量和良好设计的元素对于设计师来说就像宝贝一样.如果您正在为您的网站,博客,Web 应用程序或移动应用程序寻找完美设计的网页元素,那么下面这个列表会是你需要的. ...

  4. "多行文本"组件:<multi> —— 快应用组件库H-UI

     <import name="multi" src="../Common/ui/h-ui/text/c_text_multi"></impo ...

  5. English word

    第一部分  通过词缀认识单词 (常用前缀一) 1.a- ①加在单词(形容词)或词根前面,表示"不,无,非" acentric [ə'sentrik] a  无中心的(a+centr ...

  6. Android DownloadProvider学习 (二)

    DownloadManager.Request用来请求一个下载,DownloadManager.Query用来查询下载信息,这两个类的具体功能会在后面穿插介绍.DownloadManager的源码可见 ...

  7. JavaScript使用DeviceOne开发实战(四)仿优酷视频应用

    开发之前需要考虑系统的差异性,比如ios手机没有回退键,所以在开发时一定要考虑二级界面需要有回退键,否则ios的手机就会陷入到这个页面出不去了.安卓系统有回退键,针对这个情况需要要求用户在3秒钟之内连 ...

  8. Android 下载模块分析(DownloadManager和DownloadProvider)

    Android下载模块主要有2个部分组成:DownloadManager和DownloadProvider:其中DownloadManager提供接口供调用,具体的实现是 DownloadProvid ...

  9. Android 演示 DownloadManager——Android 下载 apk 包并安装

    本文内容 环境 项目结构 演示下载 参考资料 本文是 github 上 Trinea-Android-common 和 Trinea-Android-Demo 项目的一部分,将下载部分分离出来,看看如 ...

随机推荐

  1. UBUNTU16.04 连接不了cn.archive.ubuntu.com

    ubuntu系统更换源 更换源的方法非常简单:修改/etc/apt/sources.list文件即可 进入目录 /etc/apt cd /etc/apt修改sources.list文件 sudo vi ...

  2. 如何计算tomcat线程池大小?

    背景 在我们的日常开发中都涉及到使用tomcat做为服务器,但是我们该设置多大的线程池呢?以及根据什么原则来设计这个线程池呢? 接下来,我将介绍本人是怎么设计以及计算的. 目标 确定tomcat服务器 ...

  3. 3D打印材料的发展现状(1)

    材料是3D打印的物质基础,也是当前制约3D打印发展的瓶颈. 3D打印材料 3D打印材料是3D打印技术发展的重要物质基础,材料的发展对于3D打印的发展有重要的作用. 目前,3D打印材料主要包括工程塑料. ...

  4. Jenkins操作,实现增删改查

    Jenkins的版本是:Jenkins2.138.1 实现的操作接口: using System; using System.Collections.Generic; namespace iHRPub ...

  5. Linux通过docker安装运行酷Q--用QQ骰子君进行跑团

    Linux通过docker安装运行酷Q 文:铁乐与猫 需求:和小伙伴周末进行愉快的TRPG跑团,需要在QQ讨论组上加了qq小号后,将qq小号用酷Q配合投骰的应用变成骰子君. 限制:我个人的云计算服务器 ...

  6. XtraEditors三、LookUpEdit、GridLookUpEdit、SearchLookUpEdit

    https://documentation.devexpress.com/WindowsForms/DevExpress.XtraEditors.LookUpEditBase.class 一.Look ...

  7. HTML、jsp页面中radio,checkbox,select数据回显功能,默认被选中问题

    最近常常遇到各种复选框.单选框.下拉框的默认被选中的问题,开始也是绞尽脑汁的想办法,今天写一篇学习总结的博文来写一下学习总结. 单选框(radio)默认被选中: 一.jstl技术进行回显 <in ...

  8. python subprocess 和 multiprocess选择以及我遇到的坑

    The subprocess option: subprocess is 用来执行其他的可执行程序的,即执行外部命令. 他是os.fork() 和 os.execve() 的封装. 他启动的进程不会把 ...

  9. Ceph块存储介绍

    1. 块存储是什么 块存储简称RBD(RADOS Block Device),是一种有序的字节序块,也是在Ceph三大存储类型中最为常用的存储方式 ,Ceph的块存储是基于RADOS的,因此它也借助R ...

  10. (转)em重建全过程

    该问题遇到N次,被郁闷N次,特此记录以备不时之需 由于n久不用em,而本机在公司使用dhcp自动获取ip,导致ip变化,而使em启动报出ora-12514 DBD ERROR: OCIServerAt ...