Einzelnen Beitrag anzeigen

rwalper

Registriert seit: 6. Sep 2006
48 Beiträge
 
Delphi 11 Alexandria
 
#11

AW: Hässlicher Effekt beim Scrollen

  Alt 22. Mai 2015, 10:15
Hi, ich hatte einen ähnlichen Effekt (Paintbox auf Scrollbox). Mir hat dabei Folgendes geholfen:
Delphi-Quellcode:
var
  ExStyle: DWORD;
  ...
  Scrollbox.DoubleBuffered := false;

  ExStyle := GetWindowLong(Scrollbox.Handle, GWL_EXSTYLE);
  ExStyle := ExStyle or WS_EX_COMPOSITED
  SetWindowLong(Scrollbox.Handle, GWL_EXSTYLE, ExStyle);
  Mit Zitat antworten Zitat