clnMain.dfm
上传用户:juxian
上传日期:2013-04-01
资源大小:38k
文件大小:1k
源码类别:

驱动编程

开发平台:

Delphi

  1. object Form1: TForm1
  2.   Left = 192
  3.   Top = 129
  4.   Width = 696
  5.   Height = 480
  6.   Caption = 'Simple Screen Client'
  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.   FormStyle = fsStayOnTop
  14.   OldCreateOrder = False
  15.   PopupMenu = PopupMenu1
  16.   Position = poDefault
  17.   OnCreate = FormCreate
  18.   OnResize = FormResize
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object ScreenPlayer1: TScreenPlayer
  22.     OnScreenBitmap = ScreenPlayer1ScreenBitmap
  23.     OnHeaderUpdate = ScreenPlayer1HeaderUpdate
  24.     OnFrameEnd = ScreenPlayer1FrameEnd
  25.     Port = 3514
  26.     MulticastIP = '224.0.0.1'
  27.     Active = True
  28.     Left = 8
  29.     Top = 8
  30.   end
  31.   object PopupMenu1: TPopupMenu
  32.     Left = 8
  33.     Top = 40
  34.     object FullScreen1: TMenuItem
  35.       Caption = 'Full Screen'
  36.       OnClick = FullScreen1Click
  37.     end
  38.     object Restore1: TMenuItem
  39.       Caption = 'Restore'
  40.       OnClick = Restore1Click
  41.     end
  42.   end
  43. end