标签: c# .net performance graphics printing
我有一个打印到DC的功能。我使用VisibleClipBounds来确定正确的页面尺寸。但是,这需要很长时间才能运行。
VisibleClipBounds
只需将Width或Height写入控制台就需要超过100毫秒,那就是发布!任何人都可以建议为什么这么长时间?
Width
Height
function DrawToDC(Graphics dc)) { Console.WriteLine(dc.VisibleClipBounds.Width); }