Changeset 29 for trunk/Forms/UFormNew.pas
- Timestamp:
- Dec 22, 2016, 9:46:17 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormNew.pas
r28 r29 7 7 uses 8 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, Spin, 9 StdCtrls, ActnList, UFGraphics ;9 StdCtrls, ActnList, UFGraphics, URegistry; 10 10 11 11 type … … 32 32 { private declarations } 33 33 public 34 { public declarations }35 34 end; 36 35 … … 71 70 ComboBoxColorFormat.ItemIndex := 0; 72 71 72 if ComboBoxColorFormat.Items.IndexOf(Core.LastColorFormat) <> -1 then 73 ComboBoxColorFormat.ItemIndex := ComboBoxColorFormat.Items.IndexOf(Core.LastColorFormat); 74 73 75 // Default 74 76 SpinEditWidth.Value := 200; … … 79 81 procedure TFormNew.FormClose(Sender: TObject; var CloseAction: TCloseAction); 80 82 begin 83 Core.LastColorFormat := ComboBoxColorFormat.Items[ComboBoxColorFormat.ItemIndex]; 81 84 Core.PersistentForm1.Save(Self); 82 85 end;
Note:
See TracChangeset
for help on using the changeset viewer.