selectwin.dfm

来自「用delphi写的密码管理工具.」· DFM 代码 · 共 59 行

DFM
59
字号
object frmSelectWin: TfrmSelectWin
  Left = 302
  Top = 177
  BorderStyle = bsDialog
  Caption = '选择目标窗口'
  ClientHeight = 219
  ClientWidth = 185
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  PixelsPerInch = 96
  TextHeight = 13
  object lstWin: TListBox
    Left = 0
    Top = 0
    Width = 185
    Height = 189
    Align = alClient
    ItemHeight = 16
    Style = lbOwnerDrawFixed
    TabOrder = 0
    OnDblClick = btnOKClick
  end
  object Panel1: TPanel
    Left = 0
    Top = 189
    Width = 185
    Height = 30
    Align = alBottom
    BevelOuter = bvNone
    TabOrder = 1
    object btnOK: TButton
      Left = 59
      Top = 5
      Width = 60
      Height = 23
      Caption = '确定'
      Default = True
      TabOrder = 0
      OnClick = btnOKClick
    end
    object btnCancel: TButton
      Left = 123
      Top = 5
      Width = 60
      Height = 23
      Cancel = True
      Caption = '取消'
      ModalResult = 2
      TabOrder = 1
    end
  end
end

⌨️ 快捷键说明

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