Changeset 178 for branches/highdpi/Packages/CevoComponents/ButtonBase.pas
- Timestamp:
- Jun 23, 2019, 3:15:29 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/highdpi/Packages/CevoComponents/ButtonBase.pas
r135 r178 4 4 5 5 uses 6 Classes, Graphics, Controls ;6 Classes, Graphics, Controls, UDpiControls; 7 7 8 8 type 9 TButtonBase = class(T GraphicControl)9 TButtonBase = class(TDpiGraphicControl) 10 10 protected 11 11 FDown, FPermanent: boolean; 12 FGraphic: T Bitmap;12 FGraphic: TDpiBitmap; 13 13 // FDownSound, FUpSound: string; 14 14 ClickProc: TNotifyEvent; … … 26 26 public 27 27 constructor Create(aOwner: TComponent); override; 28 property Graphic: T Bitmap read FGraphic write FGraphic;28 property Graphic: TDpiBitmap read FGraphic write FGraphic; 29 29 // property DownSound: string read FDownSound write FDownSound; 30 30 // property UpSound: string read FUpSound write FUpSound;
Note:
See TracChangeset
for help on using the changeset viewer.