-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathHelpWindow.dfm
85 lines (85 loc) · 1.83 KB
/
HelpWindow.dfm
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
object frmHelp: TfrmHelp
Left = 0
Top = 0
BorderIcons = [biSystemMenu]
Caption = 'Help window'
ClientHeight = 264
ClientWidth = 815
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Position = poOwnerFormCenter
OnShow = FormShow
DesignSize = (
815
264)
TextHeight = 15
object pnl1: TPanel
Left = 0
Top = 0
Width = 815
Height = 220
Align = alTop
Anchors = [akLeft, akTop, akRight, akBottom]
BevelInner = bvRaised
BevelOuter = bvLowered
Caption = 'pnl1'
ParentBackground = False
TabOrder = 0
StyleElements = []
object redtHelpContents: TRichEdit
Left = 2
Top = 2
Width = 811
Height = 216
Cursor = crIBeam
Align = alClient
BorderStyle = bsNone
BorderWidth = 6
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Lines.Strings = (
'redtHelpContents')
ParentFont = False
ScrollBars = ssVertical
ShowURLHint = True
TabOrder = 0
end
end
object btnClose: TButton
Left = 732
Top = 231
Width = 75
Height = 25
Cursor = crHandPoint
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Close'
TabOrder = 1
StyleElements = []
OnClick = btnCloseClick
end
object cmbHelpTextScale: TComboBox
Left = 568
Top = 233
Width = 145
Height = 22
Style = csOwnerDrawFixed
Anchors = [akRight, akBottom]
ItemIndex = 1
TabOrder = 2
Text = '100%'
OnChange = cmbHelpTextScaleChange
Items.Strings = (
'75%'
'100%'
'125%'
'150%')
end
end