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.
连接到 SQL Server 并发送查询非常简单。但我想知道如何将它与 Progress Bars 联系起来。
我的意思是当查询正在执行时,栏正在进展......
例如,您知道查询的编号。在此之前,您设置 ProgressRing 的最大值和最小值。
ProgressRing.Maximum = 100; ProgressRing.Minimum = 0;
在循环之前定义一个计数器类型为 int。在你需要这样的代码的循环中
ring.Value = (100 * counter) / query.Count;