unit3.dfm

来自「DELPHI7编程百例 DELPHI7编程百例 DELPHI7编程百例」· DFM 代码 · 共 110 行

DFM
110
字号
object Form3: TForm3
  Left = 280
  Top = 133
  Width = 297
  Height = 341
  Caption = 'Form3'
  Color = clBtnFace
  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 = 32
    Top = 40
    Width = 28
    Height = 13
    Caption = 'Name'
    FocusControl = DBEdit1
  end
  object Label2: TLabel
    Left = 32
    Top = 96
    Width = 32
    Height = 13
    Caption = 'Capital'
    FocusControl = DBEdit2
  end
  object Label3: TLabel
    Left = 32
    Top = 152
    Width = 45
    Height = 13
    Caption = 'Continent'
    FocusControl = DBEdit3
  end
  object Label4: TLabel
    Left = 32
    Top = 208
    Width = 22
    Height = 13
    Caption = 'Area'
    FocusControl = DBEdit4
  end
  object Label5: TLabel
    Left = 32
    Top = 256
    Width = 50
    Height = 13
    Caption = 'Population'
    FocusControl = DBEdit5
  end
  object DBNavigator1: TDBNavigator
    Left = 8
    Top = 8
    Width = 270
    Height = 25
    DataSource = DataModule2.DataSource1
    TabOrder = 0
  end
  object DBEdit1: TDBEdit
    Left = 32
    Top = 64
    Width = 169
    Height = 21
    DataField = 'Name'
    DataSource = DataModule2.DataSource1
    TabOrder = 1
  end
  object DBEdit2: TDBEdit
    Left = 32
    Top = 120
    Width = 169
    Height = 21
    DataField = 'Capital'
    DataSource = DataModule2.DataSource1
    TabOrder = 2
  end
  object DBEdit3: TDBEdit
    Left = 32
    Top = 176
    Width = 169
    Height = 21
    DataField = 'Continent'
    DataSource = DataModule2.DataSource1
    TabOrder = 3
  end
  object DBEdit4: TDBEdit
    Left = 32
    Top = 224
    Width = 105
    Height = 21
    DataField = 'Area'
    DataSource = DataModule2.DataSource1
    TabOrder = 4
  end
  object DBEdit5: TDBEdit
    Left = 32
    Top = 280
    Width = 105
    Height = 21
    DataField = 'Population'
    DataSource = DataModule2.DataSource1
    TabOrder = 5
  end
end

⌨️ 快捷键说明

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