clientdetail.dfm

来自「Delphi XML & XPATH源代码」· DFM 代码 · 共 133 行

DFM
133
字号
object frmClientDetail: TfrmClientDetail
  Left = 219
  Top = 107
  Width = 263
  Height = 361
  ActiveControl = btnOK
  Caption = 'Movie Detail'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  DesignSize = (
    255
    334)
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 8
    Top = 8
    Width = 28
    Height = 13
    Caption = 'Name'
  end
  object Label2: TLabel
    Left = 8
    Top = 32
    Width = 31
    Height = 13
    Caption = 'Rating'
  end
  object Label3: TLabel
    Left = 163
    Top = 32
    Width = 33
    Height = 13
    Anchors = [akTop, akRight]
    Caption = 'Length'
  end
  object Label4: TLabel
    Left = 8
    Top = 56
    Width = 37
    Height = 13
    Caption = 'Director'
  end
  object Label5: TLabel
    Left = 8
    Top = 80
    Width = 24
    Height = 13
    Caption = 'Stars'
  end
  object Label6: TLabel
    Left = 8
    Top = 180
    Width = 42
    Height = 13
    Caption = 'Synopsis'
  end
  object edtName: TEdit
    Left = 52
    Top = 4
    Width = 196
    Height = 21
    TabStop = False
    Anchors = [akLeft, akTop, akRight]
    ReadOnly = True
    TabOrder = 0
  end
  object edtRating: TEdit
    Left = 52
    Top = 28
    Width = 57
    Height = 21
    TabStop = False
    ReadOnly = True
    TabOrder = 1
  end
  object edtLength: TEdit
    Left = 203
    Top = 28
    Width = 45
    Height = 21
    TabStop = False
    Anchors = [akTop, akRight]
    ReadOnly = True
    TabOrder = 2
  end
  object edtDirector: TEdit
    Left = 52
    Top = 52
    Width = 196
    Height = 21
    TabStop = False
    Anchors = [akLeft, akTop, akRight]
    ReadOnly = True
    TabOrder = 3
  end
  object lbxStars: TListBox
    Left = 52
    Top = 76
    Width = 196
    Height = 97
    Anchors = [akLeft, akTop, akRight]
    ItemHeight = 13
    TabOrder = 4
  end
  object memSynopsis: TMemo
    Left = 52
    Top = 176
    Width = 196
    Height = 121
    Anchors = [akLeft, akTop, akRight, akBottom]
    ReadOnly = True
    ScrollBars = ssVertical
    TabOrder = 5
  end
  object btnOK: TButton
    Left = 90
    Top = 304
    Width = 75
    Height = 25
    Anchors = [akBottom]
    Caption = 'OK'
    Default = True
    ModalResult = 1
    TabOrder = 6
  end
end

⌨️ 快捷键说明

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