Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个可以嵌入一些控件(如进度条)的列表视图,我发现
我选择 XPTable 但我不知道如何更新进度条。我已经阅读了所有教程.. 并搜索了示例.. 更新该进度条没有任何意义。请帮忙。
我已经找到了解决方案
public void UpdateProgressBar(int value) { if (InvokeRequired) { this.Invoke(new Action<int>(UpdateProgressBar), new object[] { value }); return; } table1.TableModel.Rows[0].Cells[1].Data = value; }