editpass.dfm

来自「完整的delphi书籍源代码,大家有空的时候自己慢慢看看」· DFM 代码 · 共 124 行

DFM
124
字号
object EditPasswordFrm: TEditPasswordFrm
  Left = 316
  Top = 189
  Width = 206
  Height = 188
  Caption = #20462#25913#23494#30721
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  FormStyle = fsStayOnTop
  OldCreateOrder = False
  OnShow = FormShow
  PixelsPerInch = 96
  TextHeight = 13
  object UserName_Label: TLabel
    Left = 8
    Top = 10
    Width = 49
    Height = 13
    AutoSize = False
    Caption = #29992#25143#21517
  end
  object OldPassword_Label: TLabel
    Left = 8
    Top = 42
    Width = 57
    Height = 13
    AutoSize = False
    Caption = #21407#23494#30721
  end
  object NewPassword_Label: TLabel
    Left = 8
    Top = 74
    Width = 49
    Height = 13
    AutoSize = False
    Caption = #26032#23494#30721
  end
  object SubmitPassword_Label: TLabel
    Left = 8
    Top = 103
    Width = 73
    Height = 13
    AutoSize = False
    Caption = #30830#35748#23494#30721
  end
  object OldPassword_Edit: TEdit
    Left = 68
    Top = 36
    Width = 121
    Height = 21
    Cursor = crIBeam
    PasswordChar = '*'
    TabOrder = 0
  end
  object NewPassword_Edit: TEdit
    Left = 68
    Top = 68
    Width = 121
    Height = 21
    Cursor = crIBeam
    PasswordChar = '*'
    TabOrder = 1
  end
  object SubmitPassword_Edit: TEdit
    Left = 68
    Top = 100
    Width = 121
    Height = 21
    Cursor = crIBeam
    PasswordChar = '*'
    TabOrder = 2
  end
  object UserName_ComboBox: TComboBox
    Left = 68
    Top = 4
    Width = 121
    Height = 21
    Cursor = crIBeam
    ItemHeight = 13
    TabOrder = 3
  end
  object EditPasswordOk_BitBtn: TBitBtn
    Left = 16
    Top = 128
    Width = 75
    Height = 25
    Cursor = crHandPoint
    Caption = #30830#23450
    TabOrder = 4
    OnClick = EditPasswordOk_BitBtnClick
    Kind = bkOK
  end
  object EditPasswordCancel_BitBtn: TBitBtn
    Left = 111
    Top = 128
    Width = 75
    Height = 25
    Cursor = crHandPoint
    Caption = #21462#28040
    TabOrder = 5
    OnClick = EditPasswordCancel_BitBtnClick
    Kind = bkCancel
  end
  object EditPassword_Table: TTable
    Active = True
    DatabaseName = 'venditiondatabase'
    TableName = 'login'
    Left = 88
    Top = 24
  end
  object EditPassword_Query: TQuery
    Active = True
    DatabaseName = 'venditiondatabase'
    SQL.Strings = (
      'select * from login')
    Left = 88
    Top = 56
  end
end

⌨️ 快捷键说明

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