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.
我SetPixel(GetDC(0),x,y,color)以前在屏幕上写字,但是当我这样做时,其他一些程序会更新它的屏幕并覆盖我绘制的像素,因此在屏幕上绘制的图像看起来会闪闪发光。
SetPixel(GetDC(0),x,y,color)
我怎样才能避免这种情况并在屏幕上绘制一些东西而不用担心它会被覆盖?
屏幕是共享资源。如果您想要专属于您的东西,请创建一个窗口并在其中绘制。