本文介绍了当我移动(调整大小)窗体或组件时,我需要暂停刷新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 当我调整其他控件的大小时,我有问题,我有一个N点添加到我的图表的系列,然后我画一条线 graph.DrawLine( new Pen(Color.Yellow, 1 ),point3,point4); 当我调整其他控件的大小时o de形成这条线消失,然后当我在图表中再次出现时。我需要避免消失。 解决方案:我用boolean var调用post paint并重新绘制线条。解决方案 I have problem whit the chart when i resize other controls, i have a seri with N point added to my chart, then i paint a line graph.DrawLine(new Pen(Color.Yellow, 1), point3, point4); when i resize other control o de form this line disapear, then when i zom in the chart appear again. I need to avoid disapear.SOLUTION: I call post paint with boolean var and repaint the lines. 解决方案 这篇关于当我移动(调整大小)窗体或组件时,我需要暂停刷新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-15 03:52