Ignore:
Timestamp:
Apr 27, 2014, 1:49:43 PM (10 years ago)
Author:
chronos
Message:
  • Added: Some new concept forms and actions.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • platform/trunk/LDPlatform.Core.dfm

    r10 r11  
    22  OldCreateOrder = False
    33  OnCreate = DataModuleCreate
    4   Height = 464
    5   Width = 582
     4  OnDestroy = DataModuleDestroy
     5  Height = 526
     6  Width = 625
    67  object ActionList1: TActionList
    78    Images = ImageList1
     
    1617      OnExecute = AQuitExecute
    1718    end
     19    object AFileOpen: TAction
     20      Caption = '&Open...'
     21      ShortCut = 16463
     22      OnExecute = AFileOpenExecute
     23    end
     24    object AFileClose: TAction
     25      Caption = 'Close'
     26    end
     27    object AFileSave: TAction
     28      Caption = 'Save'
     29      ShortCut = 16467
     30      OnExecute = AFileSaveExecute
     31    end
     32    object AFileSaveAs: TAction
     33      Caption = 'Save as...'
     34      OnExecute = AFileSaveAsExecute
     35    end
     36    object ANew: TAction
     37      Caption = 'Other...'
     38      OnExecute = ANewExecute
     39    end
     40    object AFileCloseAll: TAction
     41      Caption = 'Close all'
     42    end
     43    object AFileSaveAll: TAction
     44      Caption = 'Save all'
     45    end
     46    object AHelpAbout: TAction
     47      Caption = 'About'
     48    end
    1849  end
    1950  object ImageList1: TImageList
     
    2152    Top = 144
    2253  end
     54  object OpenDialog1: TOpenDialog
     55    Filter =
     56      'Delphi project (.dpr)|*.dpr|Delphi source (.pas)|*.pas|Delphi pa' +
     57      'ckage (.dpk)|*.dpk|Any file|*.*'
     58    Left = 432
     59    Top = 312
     60  end
     61  object SaveDialog1: TSaveDialog
     62    Left = 352
     63    Top = 312
     64  end
    2365end
Note: See TracChangeset for help on using the changeset viewer.