Changeset 537 for DpiControls/Demo/UDpiFormMain.pas
- Timestamp:
- Jun 23, 2019, 12:36:19 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DpiControls/Demo/UDpiFormMain.pas
r535 r537 16 16 procedure DpiButton1Click(Sender: TObject); 17 17 procedure DpiFormMainCreate(Sender: TObject); 18 procedure DpiFormMainDestroy(Sender: TObject); 18 19 procedure DpiPaintBox1Paint(Sender: TObject); 19 20 private 21 Button: TDpiButton; 22 Image: TDpiImage; 23 ListBox: TDpiListBox; 24 PaintBox: TDpiPaintBox; 20 25 public 21 26 … … 33 38 procedure TDpiFormMain.DpiFormMainCreate(Sender: TObject); 34 39 var 35 Button: TDpiButton;36 Image: TDpiImage;37 ListBox: TDpiListBox;38 40 I: Integer; 39 PaintBox: TDpiPaintBox;40 41 begin 41 42 Button := TDpiButton.Create(DpiFormMain); … … 65 66 end; 66 67 68 procedure TDpiFormMain.DpiFormMainDestroy(Sender: TObject); 69 begin 70 FreeAndNil(Button); 71 FreeAndNil(Image); 72 FreeAndNil(ListBox); 73 end; 74 67 75 procedure TDpiFormMain.DpiPaintBox1Paint(Sender: TObject); 68 76 begin
Note:
See TracChangeset
for help on using the changeset viewer.