unit1.dfm

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

DFM
74
字号
object Form1: TForm1
  Left = 380
  Top = 223
  Width = 283
  Height = 286
  Caption = 'Video Player'
  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 TrackBar1: TTrackBar
    Left = 8
    Top = 184
    Width = 257
    Height = 33
    Orientation = trHorizontal
    Frequency = 1
    Position = 0
    SelEnd = 0
    SelStart = 0
    TabOrder = 1
    TickMarks = tmBottomRight
    TickStyle = tsAuto
  end
  object Panel1: TPanel
    Left = 16
    Top = 0
    Width = 241
    Height = 179
    Caption = 'Panel1'
    Color = clBtnText
    TabOrder = 2
  end
  object MediaPlayer1: TMediaPlayer
    Left = 11
    Top = 207
    Width = 253
    Height = 33
    TabOrder = 0
    OnClick = MediaPlayer1Click
  end
  object MainMenu1: TMainMenu
    Left = 40
    Top = 32
    object File1: TMenuItem
      Caption = '&File'
      object Open1: TMenuItem
        Caption = '&Open'
        OnClick = Open1Click
      end
      object Exit1: TMenuItem
        Caption = 'E&xit'
        OnClick = Exit1Click
      end
    end
  end
  object OpenDialog1: TOpenDialog
    Left = 88
    Top = 32
  end
  object Timer1: TTimer
    Interval = 50
    OnTimer = Timer1Timer
    Left = 136
    Top = 32
  end
end

⌨️ 快捷键说明

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