main.dfm

来自「C++ builder 完全攻略 学习C++ Builder 不可缺少」· DFM 代码 · 共 45 行

DFM
45
字号
object Form1: TForm1
  Left = 366
  Top = 267
  Width = 335
  Height = 236
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -10
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  Menu = MainMenu1
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 59
    Top = 59
    Width = 143
    Height = 39
    AutoSize = False
  end
  object MainMenu1: TMainMenu
    Left = 8
    Top = 24
    object View1: TMenuItem
      Caption = 'View'
      object Showwords1: TMenuItem
        Action = sayHello
        Caption = 'Show words'
      end
    end
  end
  object ActionList1: TActionList
    Left = 48
    Top = 24
    object sayHello: TAction
      Category = 'selfDefine'
      Caption = 'sayHello'
      OnExecute = sayHelloExecute
    end
  end
end

⌨️ 快捷键说明

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