unit1.dfm

来自「delphi课程设计的内容,包括源代码,文本的设计,菜单的设计等.」· DFM 代码 · 共 113 行

DFM
113
字号
object Form1: TForm1
  Left = 229
  Top = 133
  Width = 544
  Height = 375
  Caption = '计算'
  Color = clYellow
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 144
    Top = 72
    Width = 6
    Height = 13
    Caption = '+'
  end
  object Label2: TLabel
    Left = 304
    Top = 72
    Width = 17
    Height = 25
    Caption = '='
  end
  object Label3: TLabel
    Left = 40
    Top = 40
    Width = 61
    Height = 24
    Caption = '加数1'
    Color = clBackground
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clRed
    Font.Height = -19
    Font.Name = 'MS Sans Serif'
    Font.Style = [fsBold, fsItalic]
    ParentColor = False
    ParentFont = False
  end
  object Label4: TLabel
    Left = 200
    Top = 40
    Width = 61
    Height = 24
    Caption = '加数2'
    Color = clBlue
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clRed
    Font.Height = -19
    Font.Name = 'MS Sans Serif'
    Font.Style = [fsBold, fsItalic]
    ParentColor = False
    ParentFont = False
  end
  object Label5: TLabel
    Left = 352
    Top = 40
    Width = 50
    Height = 24
    Caption = '结果'
    Color = clLime
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clRed
    Font.Height = -19
    Font.Name = 'MS Sans Serif'
    Font.Style = [fsBold, fsItalic]
    ParentColor = False
    ParentFont = False
  end
  object Edit1: TEdit
    Left = 40
    Top = 72
    Width = 97
    Height = 21
    TabOrder = 0
    OnChange = Edit1Change
  end
  object Edit2: TEdit
    Left = 176
    Top = 72
    Width = 105
    Height = 21
    TabOrder = 1
  end
  object Edit3: TEdit
    Left = 336
    Top = 72
    Width = 89
    Height = 21
    TabOrder = 2
  end
  object Button1: TButton
    Left = 296
    Top = 152
    Width = 105
    Height = 41
    Caption = '计算'
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clGreen
    Font.Height = -24
    Font.Name = 'MS Sans Serif'
    Font.Style = []
    ParentFont = False
    TabOrder = 3
    OnClick = Button1Click
  end
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?