问题描述
Winform中ListBox的每一行插入一个进度条怎么实现现在要是插入的话只能插入字符串显示,如果插入进度条就不显示任何内容了,怎么才能实现我想要的效果呢?
解决方案
解决方案二:
listBox不一定有这功能吧,尝试用其它控件吧
解决方案三:
privatevoidForm1_Load(objectsender,EventArgse){ProgressBarprogressBar=newProgressBar();progressBar.Width=listBox1.Width;this.listBox1.Controls.Add(progressBar);listBox1.Items.Add("hhhhh");listBox1.Items.Add("gggg");listBox1.Items.Add("AAAAA");listBox1.Items.Add("BBBBB");}这样可以在listbox空间中加进度条你尝试下怎么实现实现要贴出来学习参考下
解决方案四:
用Panel插入Label和ProgressBar吧
时间: 2024-09-28 07:37:19