Last change
on this file was 110, checked in by chronos, 6 weeks ago |
- Added: Sorting by individual columns in Score window.
|
File size:
1.7 KB
|
Line | |
---|
1 | object FormScore: TFormScore
|
---|
2 | Left = 669
|
---|
3 | Height = 352
|
---|
4 | Top = 492
|
---|
5 | Width = 706
|
---|
6 | Caption = 'Score'
|
---|
7 | ClientHeight = 352
|
---|
8 | ClientWidth = 706
|
---|
9 | DesignTimePPI = 144
|
---|
10 | OnShow = FormShow
|
---|
11 | LCLVersion = '3.6.0.0'
|
---|
12 | object ListView1: TListView
|
---|
13 | Left = 9
|
---|
14 | Height = 296
|
---|
15 | Top = 8
|
---|
16 | Width = 693
|
---|
17 | Anchors = [akTop, akLeft, akRight, akBottom]
|
---|
18 | Columns = <
|
---|
19 | item
|
---|
20 | Caption = 'Time'
|
---|
21 | Width = 200
|
---|
22 | end
|
---|
23 | item
|
---|
24 | Caption = 'Board size'
|
---|
25 | Width = 100
|
---|
26 | end
|
---|
27 | item
|
---|
28 | Caption = 'Score'
|
---|
29 | Width = 100
|
---|
30 | end
|
---|
31 | item
|
---|
32 | Caption = 'Biggest tile'
|
---|
33 | Width = 100
|
---|
34 | end
|
---|
35 | item
|
---|
36 | Caption = 'Moves'
|
---|
37 | Width = 100
|
---|
38 | end
|
---|
39 | item
|
---|
40 | Caption = 'Undos'
|
---|
41 | Width = 100
|
---|
42 | end
|
---|
43 | item
|
---|
44 | Caption = 'Disabled tiles'
|
---|
45 | Width = 100
|
---|
46 | end
|
---|
47 | item
|
---|
48 | Caption = 'Unmergeable tiles'
|
---|
49 | Width = 100
|
---|
50 | end
|
---|
51 | item
|
---|
52 | Caption = 'Duration'
|
---|
53 | Width = 100
|
---|
54 | end>
|
---|
55 | OwnerData = True
|
---|
56 | ReadOnly = True
|
---|
57 | RowSelect = True
|
---|
58 | TabOrder = 0
|
---|
59 | ViewStyle = vsReport
|
---|
60 | OnData = ListView1Data
|
---|
61 | end
|
---|
62 | object ButtonClose: TButton
|
---|
63 | Left = 589
|
---|
64 | Height = 38
|
---|
65 | Top = 312
|
---|
66 | Width = 113
|
---|
67 | Anchors = [akRight, akBottom]
|
---|
68 | Caption = 'Close'
|
---|
69 | ModalResult = 11
|
---|
70 | TabOrder = 1
|
---|
71 | end
|
---|
72 | object ButtonClear: TButton
|
---|
73 | Left = 9
|
---|
74 | Height = 38
|
---|
75 | Top = 312
|
---|
76 | Width = 113
|
---|
77 | Anchors = [akLeft, akBottom]
|
---|
78 | Caption = 'Clear'
|
---|
79 | TabOrder = 2
|
---|
80 | OnClick = ButtonClearClick
|
---|
81 | end
|
---|
82 | object ListViewSort1: TListViewSort
|
---|
83 | ListView = ListView1
|
---|
84 | OnCompareItem = ListViewSort1CompareItem
|
---|
85 | OnFilter = ListViewSort1Filter
|
---|
86 | Column = 2
|
---|
87 | Order = soDown
|
---|
88 | Left = 253
|
---|
89 | Top = 153
|
---|
90 | end
|
---|
91 | end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.