Changeset 96 for trunk/Forms/UFormAbout.pas
- Timestamp:
- Aug 2, 2018, 10:41:11 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormAbout.pas
r74 r96 56 56 if Assigned(ApplicationInfo) then begin 57 57 LabelAppName.Caption := ApplicationInfo.AppName; 58 LabelAppName.AutoSize := True; 59 LabelAppName.Font.Size := 30; 60 LabelDescription.Caption := ApplicationInfo.Description; 58 61 LabelContent.Caption := SVersion + ': ' + ApplicationInfo.Version + LineEnding + 59 62 SReleaseDate + ': ' + DateToStr(ApplicationInfo.ReleaseDate) + LineEnding + 60 63 SLicense + ': ' + ApplicationInfo.License; 64 Image1.Picture.Bitmap.Assign(Application.Icon); 61 65 end; 62 66 end; … … 70 74 procedure TFormAbout.FormCreate(Sender: TObject); 71 75 begin 76 Core.ThemeManager.UseTheme(Self); 72 77 ApplicationInfo := nil; 73 78 CoolTranslator := nil;
Note:
See TracChangeset
for help on using the changeset viewer.