ufrmmain.dfm

来自「演示delphi在运行环境中自动生成控件的例子」· DFM 代码 · 共 56 行

DFM
56
字号
object Form1: TForm1
  Left = 226
  Top = 234
  Width = 672
  Height = 410
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Button1: TButton
    Left = 16
    Top = 344
    Width = 75
    Height = 25
    Caption = 'COPY'
    TabOrder = 0
    OnClick = Button1Click
  end
  object PageControl1: TPageControl
    Left = 16
    Top = 16
    Width = 609
    Height = 313
    ActivePage = TabSheet1
    TabOrder = 1
    object TabSheet1: TTabSheet
      Caption = 'TabSheet1'
      object Memo1: TMemo
        Left = 16
        Top = 16
        Width = 185
        Height = 89
        Lines.Strings = (
          'Memo1'
          'asdfasdfasdfasdfasdf')
        TabOrder = 0
      end
      object Button2: TButton
        Left = 48
        Top = 128
        Width = 75
        Height = 25
        Caption = 'message'
        TabOrder = 1
        OnClick = Button2Click
      end
    end
  end
end

⌨️ 快捷键说明

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