installwindow.lfm

Переключить прокрутку окна
Загрузить этот исходный код

object InstallForm: TInstallForm
  Left = 0
  Height = 248
  Top = 0
  Width = 480
  ActiveControl = archiveBrowse
  BorderIcons = [biSystemMenu]
  BorderStyle = bsSingle
  Caption = 'Установить программу'
  ClientHeight = 248
  ClientWidth = 480
  LCLVersion = '1.2.6.0'
  object programmeBox: TGroupBox
    Left = 8
    Height = 88
    Top = 8
    Width = 464
    Caption = 'Архив программ для установки'
    ClientHeight = 70
    ClientWidth = 460
    TabOrder = 0
    object archiveLabel: TLabel
      Left = 8
      Height = 15
      Top = 12
      Width = 36
      Caption = '&Архив:'
      FocusControl = archive
      ParentColor = False
    end
    object archive: TEdit
      Left = 84
      Height = 23
      Top = 8
      Width = 284
      Color = clBtnFace
      ReadOnly = True
      TabOrder = 0
    end
    object archiveBrowse: TButton
      Left = 376
      Height = 24
      Top = 8
      Width = 76
      Caption = 'Об&зор…'
      OnClick = archiveBrowseClick
      TabOrder = 1
    end
    object platformLabel: TLabel
      Left = 8
      Height = 15
      Top = 44
      Width = 68
      Caption = 'Плат&форма:'
      FocusControl = platformName
      ParentColor = False
    end
    object platformName: TComboBox
      Left = 84
      Height = 23
      Top = 40
      Width = 368
      ItemHeight = 15
      Style = csDropDownList
      TabOrder = 2
    end
  end
  object directoryBox: TGroupBox
    Left = 8
    Height = 108
    Top = 100
    Width = 464
    Caption = 'Папка установки'
    ClientHeight = 90
    ClientWidth = 460
    TabOrder = 1
    object directoryGames: TRadioButton
      Left = 8
      Height = 19
      Top = 8
      Width = 444
      AutoSize = False
      Caption = '&Игры'
      Checked = True
      OnEnter = radioButtonEnter
      TabOrder = 0
      TabStop = True
    end
    object directoryApps: TRadioButton
      Left = 8
      Height = 19
      Top = 36
      Width = 444
      AutoSize = False
      Caption = '&Приложения'
      OnEnter = radioButtonEnter
      TabOrder = 1
    end
    object directoryOther: TRadioButton
      Left = 8
      Height = 19
      Top = 64
      Width = 61
      Caption = '&Другая:'
      OnEnter = radioButtonEnter
      TabOrder = 2
    end
    object directory: TEdit
      Left = 84
      Height = 23
      Top = 60
      Width = 284
      Color = clBtnFace
      Enabled = False
      ReadOnly = True
      TabOrder = 3
    end
    object directorySelect: TButton
      Left = 376
      Height = 24
      Top = 60
      Width = 76
      Caption = 'Вы&брать…'
      Enabled = False
      OnClick = directorySelectClick
      TabOrder = 4
    end
  end
  object installButton: TButton
    Left = 312
    Height = 24
    Top = 216
    Width = 76
    Caption = 'Установить'
    Default = True
    Enabled = False
    ModalResult = 1
    TabOrder = 2
  end
  object cancelButton: TButton
    Left = 396
    Height = 24
    Top = 216
    Width = 76
    Cancel = True
    Caption = 'Отмена'
    ModalResult = 2
    TabOrder = 3
  end
end