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

Delphi控件源码

开发平台:

Delphi

  1. object Form1: TForm1
  2.   Left = 195
  3.   Top = 108
  4.   Width = 414
  5.   Height = 250
  6.   Caption = 'Euro Conversion'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 8
  19.     Top = 196
  20.     Width = 30
  21.     Height = 13
  22.     Caption = 'Value:'
  23.   end
  24.   object Label2: TLabel
  25.     Left = 214
  26.     Top = 196
  27.     Width = 33
  28.     Height = 13
  29.     Caption = 'Result:'
  30.   end
  31.   object Button1: TButton
  32.     Left = 168
  33.     Top = 8
  34.     Width = 75
  35.     Height = 177
  36.     Caption = 'Convert'
  37.     TabOrder = 0
  38.     OnClick = Button1Click
  39.   end
  40.   object EditValue: TEdit
  41.     Left = 40
  42.     Top = 192
  43.     Width = 145
  44.     Height = 21
  45.     TabOrder = 1
  46.     Text = '120'
  47.   end
  48.   object EditResult: TEdit
  49.     Left = 256
  50.     Top = 192
  51.     Width = 145
  52.     Height = 21
  53.     TabOrder = 2
  54.   end
  55.   object ListTypes: TListBox
  56.     Left = 8
  57.     Top = 8
  58.     Width = 153
  59.     Height = 177
  60.     ItemHeight = 13
  61.     TabOrder = 3
  62.   end
  63.   object ListTypes2: TListBox
  64.     Left = 248
  65.     Top = 5
  66.     Width = 153
  67.     Height = 180
  68.     ItemHeight = 13
  69.     TabOrder = 4
  70.   end
  71. end