Input.dfm
上传用户:rickyhu
上传日期:2007-05-27
资源大小:842k
文件大小:1k
源码类别:

控制台编程

开发平台:

Delphi

  1. object InputForm: TInputForm
  2.   Left = 235
  3.   Top = 198
  4.   BorderStyle = bsDialog
  5.   Caption = 'InputForm'
  6.   ClientHeight = 107
  7.   ClientWidth = 455
  8.   Color = clCream
  9.   Font.Charset = ANSI_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -12
  12.   Font.Name = 'Verdana'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poDesktopCenter
  16.   Scaled = False
  17.   PixelsPerInch = 96
  18.   TextHeight = 14
  19.   object LabelNotice: TLabel
  20.     Left = 16
  21.     Top = 15
  22.     Width = 4
  23.     Height = 14
  24.     Font.Charset = ANSI_CHARSET
  25.     Font.Color = clRed
  26.     Font.Height = -12
  27.     Font.Name = 'Verdana'
  28.     Font.Style = [fsBold]
  29.     ParentFont = False
  30.     Transparent = True
  31.   end
  32.   object EditInput: TEdit
  33.     Left = 16
  34.     Top = 40
  35.     Width = 425
  36.     Height = 22
  37.     MaxLength = 255
  38.     TabOrder = 0
  39.   end
  40.   object BtnOk: TButton
  41.     Left = 248
  42.     Top = 72
  43.     Width = 81
  44.     Height = 22
  45.     Caption = #30830'   '#35748
  46.     TabOrder = 1
  47.     OnClick = BtnOkClick
  48.   end
  49.   object BtnCancel: TButton
  50.     Left = 368
  51.     Top = 72
  52.     Width = 75
  53.     Height = 22
  54.     Caption = #21462'   '#28040
  55.     TabOrder = 2
  56.     OnClick = BtnCancelClick
  57.   end
  58. end