软件编程
位置:首页>> 软件编程>> C#编程>> .NET WinForm实现在listview中添加progressbar的方法

.NET WinForm实现在listview中添加progressbar的方法

作者:何问起  发布时间:2021-10-08 20:23:54 

标签: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上的所有控件,按名字找到progressbar
foreach (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;
   }
 }
}

希望本文所述对大家C#程序设计有所帮助。

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com