mainview.dfm

来自「Delphi利用MVC开发的典型例子」· DFM 代码 · 共 38 行

DFM
38
字号
object ViewMain: TViewMain
  Left = 177
  Top = 157
  Width = 696
  Height = 480
  Caption = 'An eMVC Based Application'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  Menu = MainMenu1
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object MainMenu1: TMainMenu
    Left = 56
    Top = 80
    object File1: TMenuItem
      Caption = '&File'
      object mnuExit: TMenuItem
        Caption = 'E&xit'
        OnClick = mnuExitClick
      end
    end
    object Help1: TMenuItem
      Caption = '&Help'
      object mnuHelp: TMenuItem
        Caption = '&Help'
      end
      object mnuAbout: TMenuItem
        Caption = '&About...'
      end
    end
  end
end

⌨️ 快捷键说明

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