source: trunk/Forms/FormPlayersStats.lfm@ 404

Last change on this file since 404 was 364, checked in by chronos, 5 months ago
  • Modified: Added more action icons to main toolbar and main menu.
File size: 1.9 KB
Line 
1object FormPlayersStats: TFormPlayersStats
2 Left = 689
3 Height = 308
4 Top = 437
5 Width = 737
6 Caption = 'Players stats'
7 ClientHeight = 308
8 ClientWidth = 737
9 Constraints.MinHeight = 120
10 Constraints.MinWidth = 120
11 DesignTimePPI = 144
12 OnShow = FormShow
13 LCLVersion = '3.6.0.0'
14 object ListView1: TListView
15 Left = 10
16 Height = 247
17 Top = 10
18 Width = 717
19 Align = alTop
20 Anchors = [akTop, akLeft, akRight, akBottom]
21 BorderSpacing.Around = 10
22 Columns = <
23 item
24 Caption = 'Name'
25 Width = 120
26 end
27 item
28 Caption = 'Mode'
29 Width = 120
30 end
31 item
32 Caption = 'Cells'
33 Width = 120
34 end
35 item
36 Caption = 'Discovered'
37 Width = 120
38 end
39 item
40 Caption = 'Cities'
41 Width = 120
42 end
43 item
44 Caption = 'Units'
45 Width = 120
46 end
47 item
48 Caption = 'Win objective cells'
49 Width = 150
50 end>
51 OwnerData = True
52 PopupMenu = PopupMenu1
53 ReadOnly = True
54 RowSelect = True
55 TabOrder = 0
56 ViewStyle = vsReport
57 OnData = ListView1Data
58 end
59 object ButtonClose: TButton
60 Left = 614
61 Height = 37
62 Top = 265
63 Width = 113
64 Anchors = [akRight, akBottom]
65 Caption = 'Close'
66 TabOrder = 1
67 OnClick = ButtonCloseClick
68 end
69 object PopupMenu1: TPopupMenu
70 Left = 172
71 Top = 132
72 object MenuItem1: TMenuItem
73 Action = ASpectate
74 end
75 end
76 object ActionList1: TActionList
77 Left = 448
78 Top = 136
79 object ASpectate: TAction
80 Caption = 'Spectate'
81 OnExecute = ASpectateExecute
82 end
83 end
84 object ListViewSort1: TListViewSort
85 ListView = ListView1
86 OnCompareItem = ListViewSort1CompareItem
87 OnFilter = ListViewSort1Filter
88 Column = 0
89 Order = soNone
90 Left = 653
91 Top = 132
92 end
93end
Note: See TracBrowser for help on using the repository browser.