-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathWP.GitHub.CustomMessage.dfm
69 lines (69 loc) · 1.33 KB
/
WP.GitHub.CustomMessage.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
object Frm_CustomMSG: TFrm_CustomMSG
Left = 0
Top = 0
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Confirm'
ClientHeight = 97
ClientWidth = 497
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Position = poMainFormCenter
TextHeight = 15
object Panel1: TPanel
Left = 0
Top = 56
Width = 497
Height = 41
Align = alBottom
ParentBackground = False
TabOrder = 0
object Btn_No: TButton
Left = 418
Top = 10
Width = 75
Height = 25
Caption = 'No'
TabOrder = 0
OnClick = Btn_NoClick
end
object Btn_Yes: TButton
Left = 342
Top = 10
Width = 75
Height = 25
Caption = 'Yes'
TabOrder = 1
OnClick = Btn_YesClick
end
end
object Panel2: TPanel
Left = 0
Top = 0
Width = 497
Height = 56
Align = alClient
BevelOuter = bvNone
TabOrder = 1
object lbl_Msg: TLabel
AlignWithMargins = True
Left = 3
Top = 3
Width = 491
Height = 50
Align = alClient
AutoSize = False
Caption = 'lbl_Msg'
Layout = tlCenter
WordWrap = True
ExplicitLeft = 8
ExplicitTop = 16
ExplicitWidth = 485
ExplicitHeight = 15
end
end
end