main.dfm

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

DFM
62
字号
object Form1: TForm1
  Left = 232
  Top = 128
  Width = 500
  Height = 413
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -10
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Button1: TButton
    Left = 52
    Top = 5
    Width = 66
    Height = 40
    Caption = 'OpenFile'
    TabOrder = 0
    OnClick = Button1Click
  end
  object RichEdit1: TRichEdit
    Left = 15
    Top = 51
    Width = 466
    Height = 326
    Font.Charset = CHINESEBIG5_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'MS Sans Serif'
    Font.Style = []
    Lines.Strings = (
      'RichEdit1')
    ParentFont = False
    ScrollBars = ssBoth
    TabOrder = 1
  end
  object Button2: TButton
    Left = 312
    Top = 5
    Width = 66
    Height = 40
    Caption = 'SaveAs'
    TabOrder = 2
    OnClick = Button2Click
  end
  object OpenDialog1: TOpenDialog
    Filter = 'C/C++'#21407#22987#27284'|*.cpp;*.c|'#25991#23383#27284#26696'|*.txt|'#25152#26377#27284#26696'|*.*'
    Left = 80
    Top = 64
  end
  object SaveDialog1: TSaveDialog
    Filter = 'C/C++'#21407#22987#27284'|*.cpp;*.c|'#25991#23383#27284#26696'|*.txt|'#25152#26377#27284#26696'|*.*'
    FilterIndex = 2
    Left = 240
    Top = 72
  end
end

⌨️ 快捷键说明

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