pwformunit.dfm

来自「Delphi7编程80例(完全版)」· DFM 代码 · 共 46 行

DFM
46
字号
object PWForm: TPWForm
  Left = 343
  Top = 346
  BorderStyle = bsDialog
  Caption = '请输入屏幕保护程序密码'
  ClientHeight = 134
  ClientWidth = 291
  Color = clBtnFace
  Font.Charset = GB2312_CHARSET
  Font.Color = clWindowText
  Font.Height = -14
  Font.Name = '宋体'
  Font.Style = []
  FormStyle = fsStayOnTop
  OldCreateOrder = False
  Position = poScreenCenter
  PixelsPerInch = 96
  TextHeight = 14
  object Edit1: TEdit
    Left = 16
    Top = 40
    Width = 153
    Height = 22
    TabOrder = 0
    OnKeyPress = Edit1KeyPress
  end
  object Button1: TButton
    Left = 192
    Top = 24
    Width = 75
    Height = 25
    Caption = '确定'
    TabOrder = 1
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 192
    Top = 64
    Width = 75
    Height = 25
    Caption = '取消'
    TabOrder = 2
    OnClick = Button2Click
  end
end

⌨️ 快捷键说明

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