加速 WPF 调整大小/重绘
我注意到即使调整空 WPF 窗口的大小也会显示黑色区域。我桌面上的很多程序都没有这些问题。所以我想知道,有没有办法设置调整大小重绘优先级或其他东西,并加快 WPF 窗口大小的调整速度?或者这个问题是不可避免的。
Im noticing a black area displays when resizing even an empty WPF window. Alot of programs on my desktop dont have these issues.. So im wondering, is there a way to set a resize redraw priority or something, and speed up the resizing of WPF windows? or is this problem just unavoidable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 WPF 工作方式的继承,您对此无能为力。
您所看到的是 DirectX 表面大小调整和整个表面重绘,这需要相当长的时间。
This is inherit to how WPF works and there is nothing you can do about this.
What you're seeing is the DirectX surface resizing and the entire surface redrawing, which takes a considerable amount of time.