⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.dfm

📁 Some source code for creating a media player in delphi
💻 DFM
字号:
object FormPlayer: TFormPlayer
  Left = 343
  Top = 249
  BorderStyle = bsDialog
  Caption = 'FormPlayer'
  ClientHeight = 295
  ClientWidth = 348
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Bevel2: TBevel
    Left = 8
    Top = 120
    Width = 337
    Height = 169
    Shape = bsFrame
  end
  object Bevel1: TBevel
    Left = 56
    Top = 48
    Width = 193
    Height = 33
    Shape = bsFrame
  end
  object Label_File: TLabel
    Left = 64
    Top = 50
    Width = 180
    Height = 13
    AutoSize = False
    Caption = 'Label_File'
    Transparent = True
  end
  object Label_Info: TLabel
    Left = 64
    Top = 66
    Width = 180
    Height = 13
    AutoSize = False
    Caption = 'Label_Info'
    Transparent = True
  end
  object Label1: TLabel
    Left = 16
    Top = 128
    Width = 98
    Height = 13
    Caption = 'Playlist (double click)'
  end
  object Label2: TLabel
    Left = 8
    Top = 8
    Width = 6
    Height = 13
    Caption = 'L'
  end
  object Label3: TLabel
    Left = 32
    Top = 8
    Width = 8
    Height = 13
    Caption = 'R'
  end
  object Label4: TLabel
    Left = 136
    Top = 8
    Width = 25
    Height = 13
    Caption = 'Seek'
  end
  object Label5: TLabel
    Left = 272
    Top = 8
    Width = 35
    Height = 13
    Caption = 'Volume'
  end
  object ImageTrackPos: TImage
    Left = 136
    Top = 24
    Width = 121
    Height = 17
    OnMouseDown = ImageTrackPosMouseDown
  end
  object LVU: TProgressBar
    Left = 8
    Top = 25
    Width = 17
    Height = 88
    Min = 0
    Max = 128
    Orientation = pbVertical
    TabOrder = 0
  end
  object RVU: TProgressBar
    Left = 32
    Top = 24
    Width = 17
    Height = 89
    Min = 0
    Max = 128
    Orientation = pbVertical
    TabOrder = 1
  end
  object Panel_Stat: TPanel
    Left = 56
    Top = 24
    Width = 65
    Height = 17
    BevelOuter = bvLowered
    Caption = 'Stop'
    TabOrder = 2
  end
  object ListBox: TListBox
    Left = 16
    Top = 144
    Width = 321
    Height = 137
    ItemHeight = 13
    TabOrder = 3
    OnDblClick = ListBoxDblClick
  end
  object Button1: TButton
    Left = 56
    Top = 88
    Width = 49
    Height = 25
    Caption = '<<'
    TabOrder = 4
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 112
    Top = 88
    Width = 49
    Height = 25
    Caption = 'Play'
    TabOrder = 5
    OnClick = Button2Click
  end
  object Button3: TButton
    Left = 168
    Top = 88
    Width = 49
    Height = 25
    Caption = 'Pause'
    TabOrder = 6
    OnClick = Button3Click
  end
  object Button4: TButton
    Left = 224
    Top = 88
    Width = 49
    Height = 25
    Caption = 'Stop'
    TabOrder = 7
    OnClick = Button4Click
  end
  object Button5: TButton
    Left = 256
    Top = 56
    Width = 75
    Height = 25
    Caption = 'Open'
    TabOrder = 8
    OnClick = Button5Click
  end
  object TrackVol: TTrackBar
    Left = 264
    Top = 24
    Width = 65
    Height = 15
    Max = 100
    Orientation = trHorizontal
    Frequency = 1
    Position = 10
    SelEnd = 0
    SelStart = 0
    TabOrder = 9
    ThumbLength = 12
    TickMarks = tmBoth
    TickStyle = tsNone
    OnChange = TrackVolChange
  end
  object Button6: TButton
    Left = 280
    Top = 88
    Width = 49
    Height = 25
    Caption = '>>'
    TabOrder = 10
    OnClick = Button6Click
  end
  object OpenDialog: TOpenDialog
    Options = [ofHideReadOnly, ofAllowMultiSelect, ofEnableSizing]
    Left = 216
    Top = 56
  end
  object Timer_Stat: TTimer
    Interval = 250
    OnTimer = Timer_StatTimer
    Left = 184
    Top = 56
  end
  object TimerVU: TTimer
    Interval = 33
    OnTimer = TimerVUTimer
    Left = 152
    Top = 56
  end
end

⌨️ 快捷键说明

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