1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
object Form1: TForm1
Left = 479
Height = 362
Top = 224
Width = 546
Caption = 'Form1'
ClientHeight = 362
ClientWidth = 546
OnCreate = FormCreate
OnDestroy = FormDestroy
LCLVersion = '1.0.2.0'
object PVideo: TPanel
Left = 16
Height = 285
Top = 40
Width = 518
Anchors = [akTop, akLeft, akRight, akBottom]
TabOrder = 0
end
object FEVideo: TFileNameEdit
Left = 56
Height = 23
Top = 7
Width = 374
DialogTitle = 'Select a video file'
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 0
Anchors = [akTop, akLeft, akRight]
MaxLength = 0
TabOrder = 1
end
object Label1: TLabel
Left = 16
Height = 16
Top = 7
Width = 31
Caption = 'Video'
ParentColor = False
end
object Bplay: TButton
Left = 462
Height = 25
Top = 8
Width = 75
Anchors = [akTop, akRight]
Caption = '&Play'
OnClick = BplayClick
TabOrder = 2
end
object BStop: TButton
Left = 17
Height = 25
Top = 331
Width = 75
Anchors = [akLeft, akBottom]
Caption = '&Stop'
OnClick = BStopClick
TabOrder = 3
end
object BPause: TButton
Left = 102
Height = 25
Top = 331
Width = 75
Anchors = [akLeft, akBottom]
Caption = '&Pause'
OnClick = BPauseClick
TabOrder = 4
end
object BResume: TButton
Left = 190
Height = 25
Top = 331
Width = 75
Anchors = [akLeft, akBottom]
Caption = '&Resume'
OnClick = BResumeClick
TabOrder = 5
end
end
|