source: trunk/Forms/FormPlayersStats.lfm

Last change on this file was 317, checked in by chronos, 6 months ago
  • Modified: Remove U prefix from unit names.
  • Modified: Use TFormEx for all forms for code simplification.
File size: 1.6 KB
Line 
1object FormPlayersStats: TFormPlayersStats
2 Left = 907
3 Height = 300
4 Top = 570
5 Width = 746
6 Caption = 'Players stats'
7 ClientHeight = 300
8 ClientWidth = 746
9 DesignTimePPI = 144
10 OnShow = FormShow
11 LCLVersion = '3.4.0.0'
12 object ListView1: TListView
13 Left = 5
14 Height = 290
15 Top = 5
16 Width = 736
17 Align = alClient
18 BorderSpacing.Around = 5
19 Columns = <
20 item
21 Caption = 'Name'
22 Width = 120
23 end
24 item
25 Caption = 'Mode'
26 Width = 120
27 end
28 item
29 Caption = 'Cells'
30 Width = 120
31 end
32 item
33 Caption = 'Discovered'
34 Width = 120
35 end
36 item
37 Caption = 'Cities'
38 Width = 120
39 end
40 item
41 Caption = 'Units'
42 Width = 120
43 end
44 item
45 Caption = 'Win objective cells'
46 Width = 150
47 end>
48 OwnerData = True
49 PopupMenu = PopupMenu1
50 ReadOnly = True
51 RowSelect = True
52 TabOrder = 0
53 ViewStyle = vsReport
54 OnData = ListView1Data
55 end
56 object PopupMenu1: TPopupMenu
57 Left = 172
58 Top = 132
59 object MenuItem1: TMenuItem
60 Action = ASpectate
61 end
62 end
63 object ActionList1: TActionList
64 Left = 448
65 Top = 136
66 object ASpectate: TAction
67 Caption = 'Spectate'
68 OnExecute = ASpectateExecute
69 end
70 end
71 object ListViewSort1: TListViewSort
72 ListView = ListView1
73 OnCompareItem = ListViewSort1CompareItem
74 OnFilter = ListViewSort1Filter
75 Column = 0
76 Order = soNone
77 Left = 653
78 Top = 132
79 end
80end
Note: See TracBrowser for help on using the repository browser.