-
Notifications
You must be signed in to change notification settings - Fork 20
/
LogBroker.MainForm.dfm
72 lines (72 loc) · 1.43 KB
/
LogBroker.MainForm.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
object frmMain: TfrmMain
Left = 0
Top = 0
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
ClientHeight = 30
ClientWidth = 272
Color = clBtnFace
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Segoe UI'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
ScreenSnap = True
Visible = True
PixelsPerInch = 96
TextHeight = 13
object lblIPC: TLabel
Left = 4
Top = 8
Width = 19
Height = 13
Caption = 'IPC:'
end
object shpStat: TShape
Left = 243
Top = 7
Width = 21
Height = 16
Brush.Color = clBackground
end
object edtIPCPort: TLabeledEdit
Left = 115
Top = 4
Width = 73
Height = 21
Alignment = taCenter
EditLabel.Width = 24
EditLabel.Height = 13
EditLabel.Caption = 'Port:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Segoe UI'
Font.Style = [fsBold]
LabelPosition = lpLeft
NumbersOnly = True
ParentFont = False
TabOrder = 0
Text = '5555'
end
object chkIPCAutoPort: TCheckBox
Left = 194
Top = 7
Width = 41
Height = 17
Hint = 'Auto assign TCP port for IPC messages'
Caption = 'Auto'
TabOrder = 1
OnClick = chkIPCAutoPortClick
end
object tsIPC: TToggleSwitch
Left = 27
Top = 4
Width = 54
Height = 20
TabOrder = 2
end
end