Unit1.dfm
上传用户:wanyu_2000
上传日期:2021-02-21
资源大小:527k
文件大小:1k
源码类别:

DVD

开发平台:

Delphi

  1. object Form1: TForm1
  2.   Left = 331
  3.   Top = 191
  4.   Width = 516
  5.   Height = 197
  6.   Caption = 'Test BIN to ISO'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object binedit: TEdit
  17.     Left = 25
  18.     Top = 21
  19.     Width = 396
  20.     Height = 21
  21.     TabOrder = 0
  22.     Text = 'C:'
  23.   end
  24.   object isoedit: TEdit
  25.     Left = 25
  26.     Top = 49
  27.     Width = 396
  28.     Height = 21
  29.     TabOrder = 1
  30.     Text = 'C:'
  31.   end
  32.   object Button1: TButton
  33.     Left = 425
  34.     Top = 21
  35.     Width = 75
  36.     Height = 21
  37.     Caption = 'Bin File'
  38.     TabOrder = 2
  39.     OnClick = Button1Click
  40.   end
  41.   object Button2: TButton
  42.     Left = 24
  43.     Top = 87
  44.     Width = 75
  45.     Height = 25
  46.     Caption = 'Convert'
  47.     TabOrder = 3
  48.     OnClick = Button2Click
  49.   end
  50.   object ProgressBar1: TProgressBar
  51.     Left = 106
  52.     Top = 88
  53.     Width = 315
  54.     Height = 23
  55.     Min = 0
  56.     Max = 100
  57.     TabOrder = 4
  58.   end
  59.   object BitBtn1: TBitBtn
  60.     Left = 24
  61.     Top = 114
  62.     Width = 75
  63.     Height = 25
  64.     Caption = 'Cancel'
  65.     TabOrder = 5
  66.     OnClick = BitBtn1Click
  67.   end
  68.   object OpenDialog1: TOpenDialog
  69.     DefaultExt = '.bin'
  70.     Filter = 'BIN Files (*.bin)|*.bin|All Files (*.*)|*.*'
  71.     Left = 320
  72.     Top = 7
  73.   end
  74. end