unit1.dfm

来自「<<C++Builder 6实用编程100例>>随书光盘」· DFM 代码 · 共 77 行

DFM
77
字号
object Form1: TForm1
  Left = 192
  Top = 107
  Width = 345
  Height = 386
  Caption = 'Rotate & Overturn'
  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 Image1: TImage
    Left = 18
    Top = 18
    Width = 300
    Height = 300
    AutoSize = True
    Visible = False
  end
  object OpenPictureDialog1: TOpenPictureDialog
    Left = 136
    Top = 48
  end
  object MainMenu1: TMainMenu
    Left = 64
    Top = 48
    object File: TMenuItem
      Caption = #25991#20214'(&F)'
      object Open: TMenuItem
        Caption = #25171#24320#22270#20687'(&O)'
        OnClick = OpenClick
      end
      object Resume: TMenuItem
        Caption = #24674#22797#21407#22270'(&R)'
        OnClick = ResumeClick
      end
      object Exit: TMenuItem
        Caption = #36864#20986'(&X)'
        OnClick = ExitClick
      end
    end
    object Rotate: TMenuItem
      Caption = #22270#20687#26059#36716'(&R)'
      Enabled = False
      object R_180: TMenuItem
        Caption = #26059#36716'180'#176
        OnClick = R_180Click
      end
      object S_90: TMenuItem
        Caption = #39034#26102#38024#26059#36716'90'#176
        OnClick = S_90Click
      end
      object Z_90: TMenuItem
        Caption = #36870#26102#38024#26059#36716'90'#176
        OnClick = Z_90Click
      end
    end
    object Overturn: TMenuItem
      Caption = #22270#20687#32763#36716'(&O)'
      Enabled = False
      object O_horizontal: TMenuItem
        Caption = #27839#27700#24179#32447#32763#36716
        OnClick = O_horizontalClick
      end
      object O_vertical: TMenuItem
        Caption = #27839#22402#30452#32447#32763#36716
        OnClick = O_verticalClick
      end
    end
  end
end

⌨️ 快捷键说明

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