.NET WinForm實現在listview中添加progressbar的方法

來源:互聯網
上載者:User
這篇文章主要介紹了.NET WinForm實現在listview中添加progressbar的方法,結合執行個體形式簡單分析了進度條控制項的添加與使用方法,需要的朋友可以參考下

本文執行個體講述了.NET WinForm實現在listview中添加progressbar的方法。分享給大家供大家參考,具體如下:

找了好長時間沒找到,後來索性自己寫了一個:

首先,在往listview載入資料的事件裡添加progressbar:

foreach (string d in arr){    int index = lv.Items.Count + 1;    item = new ListViewItem(new string[] { index.ToString(), d, "", "", "", "" });    lv.Items.Add(item);    float progress = 0;    Rectangle SizeR = default(Rectangle);    System.Windows.Forms.ProgressBar ProgBar = new System.Windows.Forms.ProgressBar();    SizeR = item.SubItems[2].Bounds;    SizeR.Width = lv.Columns[2].Width;    ProgBar.Parent = lv;    ProgBar.SetBounds(SizeR.X, SizeR.Y, SizeR.Width, SizeR.Height);    ProgBar.Value = (int)progress;    ProgBar.Visible = true;    //取一個唯一的名字,以後好找    ProgBar.Name = d + "progressbar";}

然後在需要修改progressbar的值的地方設定它的值:

//迴圈listview上的所有控制項,按名字找到progressbarforeach (Control item in lv.Controls){    if (item.Name == d.Name + "progressbar")    {      ProgressBar bar = (ProgressBar)item;      bar.Value = (int)((d.Progress) * 100);    }}

其實我們只是把progressbar根據長寬高固定在了listview指定的格子裡,如果我們拖動listview中的列,格子的位置會發生改變,這時候需要修改對應proressbar的位置,我們需要添加ColumnWidthChanging事件,在拖動column的時候,progressbar會隨著改變位置:

private void lvt_ColumnWidthChanging(object sender, ColumnWidthChangingEventArgs e){  Rectangle SizeR = default(Rectangle);  int width = e.NewWidth;  foreach (Control item in lv.Controls)  {    //根據名字找到所有的progressbar    if (item.Name.IndexOf("progressbar") >= 0)    {      ProgressBar bar = (ProgressBar)item;      //Rectangle size=bar.Bounds;      SizeR=bar.Bounds;      //lv.Columns[2]是放置progressbar的地方      SizeR.Width=lv.Columns[2].Width;      bar.SetBounds(lv.Items[0].SubItems[2].Bounds.X, SizeR.Y, SizeR.Width, SizeR.Height);      //bar.Width = width;    }  }}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.