-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.dfm
More file actions
51 lines (51 loc) · 1.03 KB
/
Main.dfm
File metadata and controls
51 lines (51 loc) · 1.03 KB
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
object Form2: TForm2
Left = 399
Height = 430
Top = 141
Width = 447
Caption = 'Simple Task Manager V1'
ClientHeight = 0
ClientWidth = 0
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
LCLVersion = '3.2.0.0'
object TaskLv: TListView
Left = 3
Height = 414
Top = 8
Width = 439
Columns = <
item
Caption = 'Process Name'
Width = 100
end
item
Caption = 'Process Path '
Width = 230
end
item
Caption = 'Process Id'
Width = 100
end>
PopupMenu = PopupMenu1
TabOrder = 0
ViewStyle = vsReport
end
object PopupMenu1: TPopupMenu
Left = 136
Top = 144
object ListTasks1: TMenuItem
Caption = 'List Tasks'
OnClick = ListTasks1Click
end
object N1: TMenuItem
Caption = '-'
end
object EndProcess1: TMenuItem
Caption = 'End Process'
OnClick = EndProcess1Click
end
end
end