source: Common/Forms/FormTests.lfm

Last change on this file was 566, checked in by chronos, 11 months ago
  • Modified: Updated Common package.
File size: 1.5 KB
Line 
1object FormTests: TFormTests
2 Left = 514
3 Height = 632
4 Top = 338
5 Width = 1072
6 Caption = 'Tests'
7 ClientHeight = 632
8 ClientWidth = 1072
9 DesignTimePPI = 144
10 OnShow = FormShow
11 LCLVersion = '2.2.6.0'
12 object ListViewTestCases: TListView
13 Left = 19
14 Height = 562
15 Top = 11
16 Width = 1041
17 Anchors = [akTop, akLeft, akRight, akBottom]
18 Columns = <
19 item
20 Caption = 'Name'
21 Width = 288
22 end
23 item
24 Caption = 'Result'
25 Width = 738
26 end>
27 OwnerData = True
28 PopupMenu = PopupMenuTest
29 ReadOnly = True
30 RowSelect = True
31 TabOrder = 0
32 ViewStyle = vsReport
33 OnData = ListViewTestCasesData
34 OnDblClick = AShowExecute
35 OnSelectItem = ListViewTestCasesSelectItem
36 end
37 object ButtonRun: TButton
38 Left = 945
39 Height = 37
40 Top = 585
41 Width = 112
42 Anchors = [akRight, akBottom]
43 Caption = 'Run'
44 OnClick = ButtonRunClick
45 TabOrder = 1
46 end
47 object LabelResult: TLabel
48 Left = 21
49 Height = 26
50 Top = 583
51 Width = 15
52 Anchors = [akLeft, akBottom]
53 Caption = ' '
54 ParentColor = False
55 end
56 object ActionList1: TActionList
57 Left = 516
58 Top = 110
59 object AShow: TAction
60 Caption = 'Show'
61 OnExecute = AShowExecute
62 end
63 object ARun: TAction
64 Caption = 'Run'
65 OnExecute = ARunExecute
66 end
67 end
68 object PopupMenuTest: TPopupMenu
69 Left = 517
70 Top = 234
71 object MenuItem1: TMenuItem
72 Action = AShow
73 end
74 object MenuItem2: TMenuItem
75 Action = ARun
76 end
77 end
78end
Note: See TracBrowser for help on using the repository browser.