CallerForm.dfm
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. object Form1: TForm1
  2.   Left = 267
  3.   Top = 123
  4.   Width = 252
  5.   Height = 276
  6.   Caption = 'Convert Caller'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = [fsBold]
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 16
  17.   object LabelResult: TLabel
  18.     Left = 40
  19.     Top = 200
  20.     Width = 145
  21.     Height = 16
  22.     Alignment = taCenter
  23.     AutoSize = False
  24.     Caption = '0'
  25.   end
  26.   object Button1: TButton
  27.     Left = 80
  28.     Top = 160
  29.     Width = 75
  30.     Height = 25
  31.     Caption = 'Convert'
  32.     TabOrder = 0
  33.     OnClick = Button1Click
  34.   end
  35.   object Button2: TButton
  36.     Left = 72
  37.     Top = 24
  38.     Width = 75
  39.     Height = 25
  40.     Caption = 'Fill List'
  41.     TabOrder = 1
  42.     OnClick = Button2Click
  43.   end
  44.   object EditAmount: TEdit
  45.     Left = 40
  46.     Top = 128
  47.     Width = 145
  48.     Height = 24
  49.     TabOrder = 2
  50.     Text = '1000'
  51.   end
  52.   object ComboBoxFrom: TComboBox
  53.     Left = 40
  54.     Top = 64
  55.     Width = 145
  56.     Height = 24
  57.     Style = csDropDownList
  58.     ItemHeight = 16
  59.     TabOrder = 3
  60.   end
  61.   object ComboBoxTo: TComboBox
  62.     Left = 40
  63.     Top = 96
  64.     Width = 145
  65.     Height = 24
  66.     Style = csDropDownList
  67.     ItemHeight = 16
  68.     TabOrder = 4
  69.   end
  70. end