-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTraySettingsForm.dfm
More file actions
198 lines (198 loc) · 4.46 KB
/
TraySettingsForm.dfm
File metadata and controls
198 lines (198 loc) · 4.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
object frmTraySettings: TfrmTraySettings
Left = 0
Top = 0
Caption = '托盘设置'
ClientHeight = 400
ClientWidth = 450
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object pnlMain: TPanel
Left = 0
Top = 0
Width = 450
Height = 400
Align = alClient
BevelOuter = bvNone
BorderWidth = 8
TabOrder = 0
object pnlTop: TPanel
Left = 8
Top = 8
Width = 434
Height = 60
Align = alTop
BevelOuter = bvNone
TabOrder = 0
object lblTitle: TLabel
Left = 0
Top = 0
Width = 80
Height = 19
Caption = '托盘设置'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object lblSubtitle: TLabel
Left = 0
Top = 30
Width = 200
Height = 13
Caption = '配置系统托盘图标和通知设置'
end
end
object pnlSettings: TPanel
Left = 8
Top = 68
Width = 434
Height = 280
Align = alClient
BevelOuter = bvNone
TabOrder = 1
object grpTrayOptions: TGroupBox
Left = 0
Top = 0
Width = 434
Height = 80
Align = alTop
Caption = '托盘选项'
TabOrder = 0
object chkMinimizeToTray: TCheckBox
Left = 12
Top = 20
Width = 200
Height = 17
Caption = '最小化到系统托盘'
TabOrder = 0
end
object chkShowNotifications: TCheckBox
Left = 12
Top = 45
Width = 200
Height = 17
Caption = '显示托盘通知'
TabOrder = 1
end
end
object grpStartupOptions: TGroupBox
Left = 0
Top = 80
Width = 434
Height = 80
Align = alTop
Caption = '启动选项'
TabOrder = 1
object chkStartMinimized: TCheckBox
Left = 12
Top = 20
Width = 200
Height = 17
Caption = '启动时最小化到托盘'
TabOrder = 0
end
object chkStartWithWindows: TCheckBox
Left = 12
Top = 45
Width = 200
Height = 17
Caption = '随 Windows 自动启动'
TabOrder = 1
OnClick = chkStartWithWindowsClick
end
end
object grpNotifications: TGroupBox
Left = 0
Top = 160
Width = 434
Height = 120
Align = alClient
Caption = '通知设置'
TabOrder = 2
object chkShowCleanupNotifications: TCheckBox
Left = 12
Top = 20
Width = 200
Height = 17
Caption = '显示清理完成通知'
TabOrder = 0
end
object chkShowSyncNotifications: TCheckBox
Left = 12
Top = 45
Width = 200
Height = 17
Caption = '显示同步状态通知'
TabOrder = 1
end
object chkShowErrorNotifications: TCheckBox
Left = 12
Top = 70
Width = 200
Height = 17
Caption = '显示错误通知'
TabOrder = 2
end
end
end
object pnlButtons: TPanel
Left = 8
Top = 348
Width = 434
Height = 44
Align = alBottom
BevelOuter = bvNone
TabOrder = 2
object btnOK: TButton
Left = 180
Top = 8
Width = 75
Height = 25
Caption = '确定'
Default = True
ModalResult = 1
TabOrder = 0
OnClick = btnOKClick
end
object btnCancel: TButton
Left = 261
Top = 8
Width = 75
Height = 25
Caption = '取消'
ModalResult = 2
TabOrder = 1
OnClick = btnCancelClick
end
object btnApply: TButton
Left = 342
Top = 8
Width = 75
Height = 25
Caption = '应用'
TabOrder = 2
OnClick = btnApplyClick
end
object btnReset: TButton
Left = 99
Top = 8
Width = 75
Height = 25
Caption = '重置'
TabOrder = 3
OnClick = btnResetClick
end
end
end
end