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.
我有一个基于 Eclipse SWT/RCP 的 GUI。当该 GUI 处于全尺寸并且我将其最小化然后最大化它时,我看到 Ui 上的黑色/黑色持续一秒钟或更长时间,然后它变得正常。我想知道,可能是什么原因
以下是截图——
这通常表明您的代码在事件侦听器上运行的时间比它应该运行的时间长,并且在该代码完成之前不会调度绘制事件。因此,您会看到黑色区域,直到它们被发送和绘制。我建议检查侦听器的逻辑,尤其是调整大小和焦点事件(如果有的话)。