main.dfm
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. object VideoForm: TVideoForm
  2.   Left = 199
  3.   Top = 131
  4.   Width = 319
  5.   Height = 275
  6.   Caption = 'Video Capture Devices'
  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.   Menu = MainMenu1
  14.   OldCreateOrder = False
  15.   OnCloseQuery = FormCloseQuery
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object VideoWindow: TVideoWindow
  21.     Left = 0
  22.     Top = 0
  23.     Width = 311
  24.     Height = 229
  25.     Mode = vmVMR
  26.     FilterGraph = FilterGraph
  27.     VMROptions.Mode = vmrWindowless
  28.     Color = clBlack
  29.     Align = alClient
  30.   end
  31.   object FilterGraph: TFilterGraph
  32.     Mode = gmCapture
  33.     GraphEdit = True
  34.     Left = 8
  35.     Top = 8
  36.   end
  37.   object MainMenu1: TMainMenu
  38.     Left = 8
  39.     Top = 72
  40.     object Devices: TMenuItem
  41.       Caption = 'Devices'
  42.     end
  43.     object Blend1: TMenuItem
  44.       Caption = 'Blend'
  45.       object ext1: TMenuItem
  46.         Caption = 'Text'
  47.         OnClick = ext1Click
  48.       end
  49.       object Bitmap1: TMenuItem
  50.         Caption = 'Bitmap'
  51.         OnClick = Bitmap1Click
  52.       end
  53.     end
  54.   end
  55.   object Filter: TFilter
  56.     BaseFilter.data = {00000000}
  57.     FilterGraph = FilterGraph
  58.     Left = 8
  59.     Top = 40
  60.   end
  61.   object OpenDialog: TOpenDialog
  62.     Filter = 'BMP file|*.bmp'
  63.     Left = 8
  64.     Top = 104
  65.   end
  66. end