newfldr.dfm

来自「这是一套全面的网络组件」· DFM 代码 · 共 65 行

DFM
65
字号
object NewFolderDialog: TNewFolderDialog
  Left = 249
  Top = 129
  BorderStyle = bsDialog
  Caption = 'New folder'
  ClientHeight = 140
  ClientWidth = 364
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -10
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  OnCloseQuery = FormCloseQuery
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 7
    Top = 10
    Width = 58
    Height = 13
    Caption = 'Folder name'
  end
  object rgCreateAs: TRadioGroup
    Left = 7
    Top = 33
    Width = 351
    Height = 65
    Caption = 'Create as:'
    ItemIndex = 0
    Items.Strings = (
      'At current level of selection'
      'Subfolder of selected folder')
    TabOrder = 0
  end
  object edName: TEdit
    Left = 85
    Top = 7
    Width = 273
    Height = 21
    TabOrder = 1
  end
  object Button1: TButton
    Left = 112
    Top = 111
    Width = 61
    Height = 20
    Caption = 'Ok'
    Default = True
    ModalResult = 1
    TabOrder = 2
  end
  object Button2: TButton
    Left = 190
    Top = 111
    Width = 61
    Height = 20
    Cancel = True
    Caption = 'Cancel'
    ModalResult = 2
    TabOrder = 3
  end
end

⌨️ 快捷键说明

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