⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 u_add.dfm

📁 《delphi数据库系统开发实例导航》源代码
💻 DFM
字号:
object F_add: TF_add
  Left = 257
  Top = 176
  ActiveControl = i_id
  BorderStyle = bsSingle
  Caption = '添加客房信息'
  ClientHeight = 347
  ClientWidth = 242
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  FormStyle = fsMDIChild
  OldCreateOrder = False
  Position = poDefault
  Visible = True
  OnClose = FormClose
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 24
    Top = 24
    Width = 73
    Height = 13
    Alignment = taRightJustify
    AutoSize = False
    Caption = '编号:'
  end
  object Label2: TLabel
    Left = 24
    Top = 56
    Width = 73
    Height = 13
    Alignment = taRightJustify
    AutoSize = False
    Caption = '地理位置:'
  end
  object Label3: TLabel
    Left = 24
    Top = 88
    Width = 73
    Height = 13
    Alignment = taRightJustify
    AutoSize = False
    Caption = '客房级别:'
  end
  object Label4: TLabel
    Left = 24
    Top = 120
    Width = 73
    Height = 13
    Alignment = taRightJustify
    AutoSize = False
    Caption = '客房状态:'
  end
  object Label5: TLabel
    Left = 24
    Top = 152
    Width = 73
    Height = 13
    Alignment = taRightJustify
    AutoSize = False
    Caption = '备注:'
  end
  object DBNavigator1: TDBNavigator
    Left = 0
    Top = 322
    Width = 242
    Height = 25
    DataSource = DM_main.DS_add_room
    Align = alBottom
    TabOrder = 0
  end
  object i_id: TDBEdit
    Left = 104
    Top = 20
    Width = 121
    Height = 21
    DataField = 'ID'
    DataSource = DM_main.DS_add_room
    TabOrder = 1
  end
  object i_place: TDBEdit
    Left = 104
    Top = 52
    Width = 121
    Height = 21
    DataField = 'PLACE'
    DataSource = DM_main.DS_add_room
    TabOrder = 2
  end
  object i_room_level: TDBLookupComboBox
    Left = 104
    Top = 84
    Width = 121
    Height = 21
    DataField = 'ROOM_LEVEL'
    DataSource = DM_main.DS_add_room
    KeyField = 'CODE'
    ListField = 'DESCRIPT'
    ListSource = DM_main.DS_room_level
    TabOrder = 3
  end
  object i_room_state: TDBLookupComboBox
    Left = 104
    Top = 116
    Width = 121
    Height = 21
    DataField = 'STATE'
    DataSource = DM_main.DS_add_room
    KeyField = 'CODE'
    ListField = 'DESCRIPT'
    ListSource = DM_main.DS_room_state
    TabOrder = 4
  end
  object i_remark: TDBMemo
    Left = 8
    Top = 168
    Width = 225
    Height = 145
    Anchors = [akLeft, akTop, akRight, akBottom]
    DataField = 'REMARK'
    DataSource = DM_main.DS_add_room
    TabOrder = 5
  end
end

⌨️ 快捷键说明

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