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

📄 unit1.~dfm

📁 mp3播放器的delphi设计
💻 ~DFM
字号:
object Form1: TForm1
  Left = 350
  Top = 195
  BorderIcons = [biSystemMenu]
  BorderStyle = bsDialog
  Caption = 'MP3 player  [Source Code availble]'
  ClientHeight = 252
  ClientWidth = 476
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -13
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PixelsPerInch = 96
  TextHeight = 16
  object Label1: TLabel
    Left = 24
    Top = 160
    Width = 31
    Height = 16
    Caption = 'Freq:'
  end
  object Label2: TLabel
    Left = 232
    Top = 160
    Width = 43
    Height = 16
    Caption = 'Length:'
  end
  object FreqLabel: TLabel
    Left = 80
    Top = 160
    Width = 40
    Height = 18
    Caption = '0000'
    Font.Charset = ANSI_CHARSET
    Font.Color = clBlue
    Font.Height = -16
    Font.Name = 'Verdana'
    Font.Style = []
    ParentFont = False
  end
  object LengthLabel: TLabel
    Left = 296
    Top = 160
    Width = 60
    Height = 18
    Caption = '000000'
    Font.Charset = ANSI_CHARSET
    Font.Color = clBlue
    Font.Height = -16
    Font.Name = 'Verdana'
    Font.Style = []
    ParentFont = False
  end
  object Label3: TLabel
    Left = 16
    Top = 219
    Width = 449
    Height = 29
    Alignment = taCenter
    AutoSize = False
    Caption = 
      'To get source code, visit www.avsuper.com  or contact with  auth' +
      'or.'#13#10'http://www.avsuper.com      EMail:  avsuper@avsuper.com'
    Color = 14531136
    Font.Charset = ANSI_CHARSET
    Font.Color = clBlack
    Font.Height = -12
    Font.Name = 'Verdana'
    Font.Style = []
    ParentColor = False
    ParentFont = False
  end
  object Panel1: TPanel
    Left = 24
    Top = 8
    Width = 177
    Height = 145
    BevelOuter = bvLowered
    Color = clBlack
    TabOrder = 0
  end
  object OpenBtn: TButton
    Left = 24
    Top = 184
    Width = 81
    Height = 25
    Caption = '&Open...'
    TabOrder = 1
    OnClick = OpenBtnClick
  end
  object PlayBtn: TButton
    Left = 112
    Top = 184
    Width = 81
    Height = 25
    Caption = 'Play'
    Enabled = False
    TabOrder = 2
    OnClick = PlayBtnClick
  end
  object PauseBtn: TButton
    Left = 200
    Top = 184
    Width = 81
    Height = 25
    Caption = 'P&ause'
    Enabled = False
    TabOrder = 3
    OnClick = PauseBtnClick
  end
  object StopBtn: TButton
    Left = 288
    Top = 184
    Width = 81
    Height = 25
    Caption = '&Stop'
    Enabled = False
    TabOrder = 4
    OnClick = StopBtnClick
  end
  object ExitBtn: TButton
    Left = 376
    Top = 184
    Width = 81
    Height = 25
    Caption = 'E&xit'
    TabOrder = 5
    OnClick = ExitBtnClick
  end
  object OpenDialog1: TOpenDialog
    DefaultExt = '*.mp3'
    Filter = 'mp3 files(*.mp3)|*.mp3'
    Left = 64
    Top = 56
  end
end

⌨️ 快捷键说明

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