Ignore:
Timestamp:
Aug 2, 2018, 10:41:11 AM (6 years ago)
Author:
chronos
Message:
  • Added: Theming support.
  • Modified: Items in Options dialog divided to two pages.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormAbout.pas

    r74 r96  
    5656  if Assigned(ApplicationInfo) then begin
    5757    LabelAppName.Caption := ApplicationInfo.AppName;
     58    LabelAppName.AutoSize := True;
     59    LabelAppName.Font.Size := 30;
     60    LabelDescription.Caption := ApplicationInfo.Description;
    5861    LabelContent.Caption := SVersion + ': ' + ApplicationInfo.Version + LineEnding +
    5962      SReleaseDate + ': ' + DateToStr(ApplicationInfo.ReleaseDate) + LineEnding +
    6063      SLicense + ': ' + ApplicationInfo.License;
     64    Image1.Picture.Bitmap.Assign(Application.Icon);
    6165  end;
    6266end;
     
    7074procedure TFormAbout.FormCreate(Sender: TObject);
    7175begin
     76  Core.ThemeManager.UseTheme(Self);
    7277  ApplicationInfo := nil;
    7378  CoolTranslator := nil;
Note: See TracChangeset for help on using the changeset viewer.