Changeset 178 for branches/highdpi/Packages/CevoComponents/ButtonN.pas
- Timestamp:
- Jun 23, 2019, 3:15:29 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/highdpi/Packages/CevoComponents/ButtonN.pas
r165 r178 4 4 5 5 uses 6 Classes, Graphics, Controls, LCLIntf, LCLType ;6 Classes, Graphics, Controls, LCLIntf, LCLType, UDpiControls; 7 7 8 8 type … … 11 11 private 12 12 FPossible, FLit: boolean; 13 FGraphic, FMask, FBackGraphic: T Bitmap;13 FGraphic, FMask, FBackGraphic: TDpiBitmap; 14 14 FIndex, BackIndex: integer; 15 15 FSmartHint: string; … … 23 23 property Lit: boolean read FLit write SetLit; 24 24 property SmartHint: string read FSmartHint write SetSmartHint; 25 property Graphic: T Bitmap read FGraphic write FGraphic;26 property Mask: T Bitmap read FMask write FMask;27 property BackGraphic: T Bitmap read FBackGraphic write FBackGraphic;25 property Graphic: TDpiBitmap read FGraphic write FGraphic; 26 property Mask: TDpiBitmap read FMask write FMask; 27 property BackGraphic: TDpiBitmap read FBackGraphic write FBackGraphic; 28 28 property ButtonIndex: integer read FIndex write SetIndex; 29 29 property OnClick: TNotifyEvent read ChangeProc write ChangeProc; … … 40 40 procedure Register; 41 41 begin 42 RegisterComponents(' C-evo', [TButtonN]);42 RegisterComponents('Samples', [TButtonN]); 43 43 end; 44 44
Note:
See TracChangeset
for help on using the changeset viewer.