Changeset 22 for trunk/UCore.pas
- Timestamp:
- Aug 19, 2021, 10:38:05 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UCore.pas
r21 r22 8 8 Classes, SysUtils, FileUtil, Controls, ActnList, Forms, Dialogs, 9 9 ULastOpenedList, UApplicationInfo, UPersistentForm, UScaleDPI, UCommon, 10 U CoolTranslator, UDataFile, Menus, URegistry, UTheme, Registry;10 UTranslator, UDataFile, Menus, URegistry, UTheme, UAboutDialog, Registry; 11 11 12 12 type … … 26 26 TCore = class(TDataModule) 27 27 AAbout: TAction; 28 AboutDialog1: TAboutDialog; 28 29 AGenerate: TAction; 29 30 AFindDuplicate: TAction; … … 40 41 ActionList1: TActionList; 41 42 ApplicationInfo1: TApplicationInfo; 42 CoolTranslator1: T CoolTranslator;43 CoolTranslator1: TTranslator; 43 44 ImageList1: TImageList; 44 45 LastOpenedList1: TLastOpenedList; … … 160 161 procedure TCore.AAboutExecute(Sender: TObject); 161 162 begin 162 FormAbout := TFormAbout.Create(nil); 163 try 164 FormAbout.ApplicationInfo := ApplicationInfo1; 165 FormAbout.ShowModal; 166 finally 167 FormAbout.Free; 168 end; 163 AboutDialog1.Show; 169 164 end; 170 165
Note:
See TracChangeset
for help on using the changeset viewer.