Changeset 563 for Common/Demo/PersistentForm
- Timestamp:
- May 29, 2023, 8:23:09 PM (18 months ago)
- Location:
- Common/Demo/PersistentForm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/Demo/PersistentForm/PersistentFormDemo.lpi
r487 r563 2 2 <CONFIG> 3 3 <ProjectOptions> 4 <Version Value=" 9"/>4 <Version Value="12"/> 5 5 <General> 6 <Flags> 7 <CompatibilityMode Value="True"/> 8 </Flags> 6 9 <SessionStorage Value="InProjectDir"/> 7 <MainUnit Value="0"/>8 10 <Title Value="PersistentFormDemo"/> 9 11 <ResourceType Value="res"/> … … 14 16 <EnableI18N LFM="False"/> 15 17 </i18n> 16 <VersionInfo>17 <StringTable ProductVersion=""/>18 </VersionInfo>19 18 <BuildModes Count="1"> 20 19 <Item1 Name="Default" Default="True"/> … … 24 23 </PublishOptions> 25 24 <RunParams> 26 <local> 27 <FormatVersion Value="1"/> 28 </local> 25 <FormatVersion Value="2"/> 26 <Modes Count="1"> 27 <Mode0 Name="default"/> 28 </Modes> 29 29 </RunParams> 30 30 <RequiredPackages Count="3"> … … 51 51 <HasResources Value="True"/> 52 52 <ResourceBaseClass Value="Form"/> 53 <UnitName Value="Unit1"/>54 53 </Unit1> 55 54 </Units> -
Common/Demo/PersistentForm/Unit1.lfm
r487 r563 1 1 object Form1: TForm1 2 2 Left = 952 3 Height = 6224 Top = 4 895 Width = 6983 Height = 933 4 Top = 449 5 Width = 1047 6 6 Caption = 'PersistentForm demo' 7 ClientHeight = 622 8 ClientWidth = 698 7 ClientHeight = 933 8 ClientWidth = 1047 9 DesignTimePPI = 144 9 10 OnClose = FormClose 10 11 OnResize = FormResize 11 12 OnShow = FormShow 12 LCLVersion = ' 1.5'13 LCLVersion = '2.2.6.0' 13 14 object ListView1: TListView 14 15 Left = 0 15 Height = 62216 Height = 933 16 17 Top = 0 17 Width = 69818 Width = 1047 18 19 Align = alClient 19 20 Columns = < 20 21 item 21 22 Caption = 'Property' 22 Width = 30023 Width = 450 23 24 end 24 25 item 25 26 Caption = 'Value' 26 Width = 38127 Width = 582 27 28 end> 28 29 TabOrder = 0 … … 32 33 MinVisiblePart = 50 33 34 EntireVisible = False 34 left = 11235 top = 7235 Left = 168 36 Top = 108 36 37 end 37 38 object Timer1: TTimer 38 39 OnTimer = Timer1Timer 39 left = 39140 top = 31440 Left = 587 41 Top = 471 41 42 end 42 43 object XMLConfig1: TXMLConfig 43 44 StartEmpty = False 44 45 RootName = 'CONFIG' 45 left = 240 46 top = 217 46 ReadOnly = False 47 Left = 360 48 Top = 326 47 49 end 48 50 end -
Common/Demo/PersistentForm/Unit1.pas
r487 r563 7 7 uses 8 8 Classes, SysUtils, XMLConf, FileUtil, Forms, Controls, Graphics, Dialogs, 9 Buttons, StdCtrls, ExtCtrls, ComCtrls, Menus, XMLPropStorage, UPersistentForm;9 Buttons, StdCtrls, ExtCtrls, ComCtrls, Menus, XMLPropStorage, PersistentForm; 10 10 11 11 type
Note:
See TracChangeset
for help on using the changeset viewer.