Changeset 445 for GraphicTest/UDrawForm.pas
- Timestamp:
- Nov 22, 2012, 1:32:52 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GraphicTest/UDrawForm.pas
r443 r445 6 6 7 7 uses 8 Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs; 8 Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs, 9 LCLType; 9 10 10 11 type … … 17 18 { private declarations } 18 19 public 19 { public declarations } 20 EraseBackgroundEnabled: Boolean; 21 procedure EraseBackground(DC: HDC); override; 20 22 end; 21 23 … … 32 34 end; 33 35 36 procedure TDrawForm.EraseBackground(DC: HDC); 37 begin 38 if EraseBackgroundEnabled then 39 inherited EraseBackground(DC); 40 end; 41 34 42 initialization 35 43 {$I UDrawForm.lrs}
Note:
See TracChangeset
for help on using the changeset viewer.