Changeset 533 for DpiControls/Demo/UDpiForm.pas
- Timestamp:
- May 26, 2019, 7:33:14 PM (5 years ago)
- Location:
- DpiControls
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
DpiControls
-
Property svn:ignore
set to
lib
-
Property svn:ignore
set to
-
DpiControls/Demo
-
Property svn:ignore
set to
DpiComponentsDemo
DpiComponentsDemo.lps
DpiComponentsDemo.res
lib
-
Property svn:ignore
set to
-
DpiControls/Demo/UDpiForm.pas
r532 r533 34 34 var 35 35 DpiButton: TDpiButton; 36 DpiImage: TDpiImage; 36 37 begin 37 38 DpiButton := TDpiButton.Create(DpiForm1); … … 41 42 DpiButton.Visible := True; 42 43 DpiButton1.Parent := Self; 44 45 DpiImage := TDpiImage.Create(DpiForm1); 46 DpiImage.Parent := DpiForm1; 47 DpiImage.SetBounds(150, 10, 100, 100); 48 DpiImage.Visible := True; 49 DpiImage.Stretch := True; 50 DpiImage.VclImage.Picture.LoadFromFile('dance.jpg'); 43 51 end; 44 52
Note:
See TracChangeset
for help on using the changeset viewer.