unit1.dfm

来自「winamp 的Plugin 的Delphi接口包」· DFM 代码 · 共 127 行

DFM
127
字号
object Form1: TForm1
  Left = 192
  Top = 107
  Width = 267
  Height = 181
  Caption = 'Plugin Tester'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Button1: TButton
    Left = 8
    Top = 8
    Width = 73
    Height = 25
    Caption = 'Open '
    Enabled = False
    TabOrder = 0
    OnClick = Button1Click
  end
  object Button2: TButton
    Left = 8
    Top = 32
    Width = 73
    Height = 25
    Caption = 'Play'
    Enabled = False
    TabOrder = 1
    OnClick = Button2Click
  end
  object Button3: TButton
    Left = 8
    Top = 56
    Width = 73
    Height = 25
    Caption = 'Stop'
    Enabled = False
    TabOrder = 2
    OnClick = Button3Click
  end
  object Button4: TButton
    Left = 88
    Top = 8
    Width = 81
    Height = 25
    Caption = 'Select Input'
    TabOrder = 3
    OnClick = Button4Click
  end
  object Button5: TButton
    Left = 88
    Top = 32
    Width = 81
    Height = 25
    Caption = 'Select Output'
    TabOrder = 4
    OnClick = Button5Click
  end
  object TrackBar1: TTrackBar
    Left = 88
    Top = 64
    Width = 81
    Height = 25
    Max = 255
    Orientation = trHorizontal
    Frequency = 32
    Position = 128
    SelEnd = 0
    SelStart = 0
    TabOrder = 5
    TickMarks = tmBottomRight
    TickStyle = tsAuto
    OnChange = TrackBar1Change
  end
  object Button6: TButton
    Left = 176
    Top = 8
    Width = 73
    Height = 25
    Caption = 'Config Input'
    Enabled = False
    TabOrder = 6
    OnClick = Button6Click
  end
  object Button7: TButton
    Left = 176
    Top = 32
    Width = 73
    Height = 25
    Caption = 'Config Output'
    Enabled = False
    TabOrder = 7
    OnClick = Button7Click
  end
  object Memo1: TMemo
    Left = 8
    Top = 96
    Width = 241
    Height = 49
    ReadOnly = True
    TabOrder = 8
  end
  object Button8: TButton
    Left = 176
    Top = 56
    Width = 73
    Height = 25
    Caption = 'Exit'
    TabOrder = 9
    OnClick = Button8Click
  end
  object OpenDialog1: TOpenDialog
    Filter = 'Winamp Plugins|*.dll'
    Left = 24
    Top = 88
  end
  object OpenDialog2: TOpenDialog
    Left = 56
    Top = 88
  end
end

⌨️ 快捷键说明

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