ZGC.Refresh() 效率瓶颈?

发布于 2024-09-12 16:49:38 字数 173 浏览 5 评论 0原文

我有一个在 TrackBar 滚动时刷新 1000 条线图的流程。

我做了一些 StopWatching,发现 ZGC.Refresh() 占了进程运行时间的 90%。当 TrackBar 滚动时查看图形进度的能力对于程序至关重要。有什么方法可以优化 ZGC.Refresh() 的效率,以便我的程序可以运行得更快?

I have a process that refreshes a 1000 line graph while a TrackBar scrolls.

I've done some StopWatching and found that ZGC.Refresh() accounts for 90% of the process run time. The ability to see the graph progress as the TrackBar scrolls is essential to the program. Is there any way to optimize the efficiency of ZGC.Refresh() so my program can run faster?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

晒暮凉 2024-09-19 16:49:38

您可以使用 ANTS Performance Profiler 之类的工具来将范围缩小到具体的部分Refresh() 方法可以使用优化。

排除方法本身的优化,是否有可能生成一个比实际需要更大的图形,然后仅显示该图形的一部分,让滚动改变当前显示的图形的哪一部分?

You could use something like ANTS Performance Profiler to narrow it down to exactly what part of the Refresh() method could use optimization.

Excluding optimization to the method itself, would it be possible to generate a graph that is larger than you actually need and then display only a portion of that graph, letting the scroll change what portion of the graph is currently displayed?

倥絔 2024-09-19 16:49:38

使用 Invalidate() 而不是 Refresh() - 它应该更快,因为它只会刷新那些发生更改的元素。

有时需要使用组合AxisCHange() + Invalidate()

Instead of Refresh() use Invalidate() - it should be much quicker because it will refresh only those elements that changed.

Sometimes it is needed to use combination AxisCHange() + Invalidate()

浊酒尽余欢 2024-09-19 16:49:38

任何对 ZedGraph 性能感兴趣的人都应该在这里查看我的答案

只是想了解 2008 年之后该库的一个版本发生了变化(包括性能增强)。

Anyone interested in ZedGraph performance should see my answer here.

Just trying to get the word out about a version of the library that has seen changes (including performance enhancements) after 2008.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文