source: branches/Machine/UFormMain.lfm

Last change on this file was 86, checked in by chronos, 9 years ago
  • Added: Virtual machine test.
File size: 1.1 KB
Line 
1object Form1: TForm1
2 Left = 632
3 Height = 1040
4 Top = 143
5 Width = 1371
6 Caption = 'Form1'
7 ClientHeight = 1040
8 ClientWidth = 1371
9 OnCreate = FormCreate
10 OnDestroy = FormDestroy
11 OnShow = FormShow
12 LCLVersion = '1.5'
13 object ListView1: TListView
14 Left = 40
15 Height = 600
16 Top = 72
17 Width = 632
18 Columns = <
19 item
20 Caption = 'Address'
21 Width = 100
22 end
23 item
24 Caption = 'Data'
25 Width = 515
26 end>
27 Font.Name = 'Ubuntu Mono'
28 OwnerData = True
29 ParentFont = False
30 TabOrder = 0
31 ViewStyle = vsReport
32 OnData = ListView1Data
33 end
34 object ListView2: TListView
35 Left = 808
36 Height = 600
37 Top = 64
38 Width = 232
39 Columns = <
40 item
41 Caption = 'Index'
42 Width = 60
43 end
44 item
45 Caption = 'Value'
46 Width = 515
47 end>
48 OwnerData = True
49 TabOrder = 1
50 ViewStyle = vsReport
51 OnData = ListView2Data
52 end
53 object ButtonRun: TButton
54 Left = 357
55 Height = 25
56 Top = 747
57 Width = 75
58 Caption = 'Run'
59 OnClick = ButtonRunClick
60 TabOrder = 2
61 end
62end
Note: See TracBrowser for help on using the repository browser.